Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mobile.css « css « static - github.com/djuelg/Shapez-Theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d279c4b2d345ace61e0ea79bf0415fc3d03b7ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
 *
 * CSS for mobile devices
 */

@media only screen and (max-width: 500px) {

	.start-screen svg {
		display: none;
		height: 0;
		width: 0;
	}

	.start-screen {
		height: 60vh;
		width: 100vw;
		margin: 0;
		background-color: #4CABAB;
	}

	.mobile {
		display: inline;
	}

	.mobile div {
		height: 20vh;
		display: flex;
	    align-items: center;
	    justify-content: center;
	    box-shadow: inset 0 -4px 4px -4px #333;
	}

	.mobile div:first-child, .mobile div:first-child:hover {
		background-color: #333;
	}

	.mobile a, .mobile a:hover {
		text-decoration: none;
		font-size: 2em;
		color: #EFFFFF !important;
	}

	.mobile div:hover {
		background-color: #FF7400;
	}

	.mobile img {
		height: 15vh;
		width: 15vh;
		text-align: center;
	}

	.wrapper {
		min-width: 320px
	}

	.publish-date, .attention-message {
		float: initial;
		text-align: center;
		margin: 0;
	}
}