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: 8cce2d336856a1c604f54bdc779644cd59b08125 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/**
 *
 * 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;
	}

	.attention-message {
		display: none;
	}

	.top-nav h3, .top-nav img, .top-nav text {
		position: absolute;
		display: none;
		width: 0;
	}

	.article-header-container {
		display: flex;
		justify-content: center;
	    align-items: center;
	}

	.article-header div {
		position: absolute;
		display: none;
		width: 0;
	}

	blockquote  {
		padding: 0;
		margin: 0;
	}
}