blob: 6ef26d3f7a5dd0e20150a09197518519f6ada6fb (
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
|
html {
width: 100%;
}
body {
width: 100%;
margin: 0;
box-sizing: border-box;
}
#main-article {
padding: 0 1em;
}
@media (min-width: 576px) {
#main-article {
padding: 0 2em;
}
}
#color-strip-container {
width: 100%;
height: 36px;
}
.color-strip-block {
display: inline-block;
width: 10%;
height: 100%;
line-height: 36px;
vertical-align: middle;
text-align: center;
color: white;
}
#slogan {
width: 100%;
background-color: dodgerblue;
text-align: center;
padding: 0.5em 1em;
box-sizing: border-box;
}
.slogan-text {
display: inline-block;
text-align: initial;
color: white;
font-size: 1.2em;
}
.friend-link {
display: inline-block;
}
.friend-img {
display: block;
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 50%;
}
.friend-name {
display: block;
text-align: center;
font-size: 1.2em;
}
|