-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
98 lines (81 loc) · 1.46 KB
/
style.css
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
90
91
92
93
94
95
96
97
98
/* HTML 5 and browser default style reset */
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
content: '';
content: none;
}
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* HTML 5 and browser default style reset */
.nav {
font-size: 30px;
text-align: center;
margin: 30px auto;
font-family: 'Indie Flower', cursive;
}
img{
max-width: 100%;
height: auto !important;
margin: 01.0351966873706% /*10 /966 */;
float: left;
}
.grid{
width:70vw;
margin: auto;
margin-top: 5px;
line-height: 0;
-webkit-column-count: 3;
-webkit-column-gap: 10px;
-moz-column-count: 3;
-moz-column-gap: 10px;
column-count: 3;
column-gap: 10px;
}
@media screen and (max-width:991px){
.grid{
width:85vw;
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
}
}
@media screen and (max-width:767px){
.grid{
width:90vw;
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
}
.grid img{
max-width: none;
width: 100% !important;
height: auto !important;
margin-bottom: 01.14285714285714%;
float: none;
}