-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (84 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (84 loc) · 1.26 KB
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
99
100
101
102
103
104
105
106
*{
font-family: verdana;
margin: 0;
}
body{
background: #eee;
color: #333;
}
.wrapper{
width: 100%;
max-width: 960px;
margin: 0 auto;
}
/* menu base styles */
/* social menu base styles */
/* grid vs flex base styles */
#blocks{
margin: 20px;
}
article{
background: #fff;
margin-bottom: 20px;
padding: 10px;
box-sizing: border-box;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
border-radius: 20px;
display: flex;
flex-flow: column;
align-items: center;
}
article img{
text-align: center;
max-width: 60px;
border-radius: 50%;
margin: 10px 0;
}
article h1{
font-size: 15px;
font-weight: bold;
}
article h2{
font-size: 10px;
color: #949494;
}
article p{
text-align: center;
margin-top: 10px;
font-size: 15px;
}
/* flex styles */
nav ul.social li{
flex: 1 1 0;
}
nav ul.social{
flex: 1 1 0;
display: flex;
}
@media screen and (min-width: 600px){
nav ul{
display: flex;
}
nav li{
flex: 1 1 0;
}
nav{
display: flex;
justify-content: space-between;
}
ul.social{
margin: 0;
}
#blocks{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
article{
flex: 0 1 49%;
transition: flex-basis 0.2s linear;
}
article.stack{
flex: 0 0 100%;
}
} /* end media 768 */