-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_style.css
75 lines (64 loc) · 1.21 KB
/
index_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
main {
margin-top: 3em;
}
article img {
display: table-cell;
}
#box {
height: 317px;
display: table-cell;
vertical-align: middle;
padding: 0 1em;
}
article {
text-align: center;
margin: auto;
width: 90%;
overflow: hidden;
display: table;
}
blockquote {
width: 80%;
background: #515151;
border-left: 10px solid #FF0080;
text-align: center;
padding: 0.5em 1em;
quotes: "\201C""\201D""\2018""\2019";
margin: 3em auto;
}
blockquote:before {
color: #FF0080;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote:after {
color: #FF0080;
content: close-quote;
font-size: 4em;
line-height: 0.1em;
margin-left: 0.25em;
vertical-align: -0.6em;
}
blockquote p {
color: white;
display: inline-block;
}
p em {
color: #ff5bad;
}
h2 {
text-align: center;
padding-bottom: 5px;
border-bottom: 2px solid #adb7bd;
}
@media all and (max-width: 580px) {
article {
display: initial;
}
article img {
margin: auto;
}
}