-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
41 lines (37 loc) · 818 Bytes
/
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
body {
font-family: 'Roboto Condensed', sans-serif;
}
p, a, h1, h2, h3, h4, li, span, div {
-webkit-font-smoothing: subpixel-antialiased;
}
.accordion {
border-right: 1px solid rgba(0,0,0,0.8);
border-left: 1px solid rgba(0,0,0,0.8);
}
.header:first-child {
border-top: 1px solid rgba(0,0,0,0.8);
}
.header {
border-bottom: 1px solid rgba(0,0,0,0.8);
text-transform: uppercase;
box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
background: rgba(0,0,0, 0.1);
cursor: pointer;
}
.header span {
margin-right: 10px;
float: right;
}
.contents {
display: none;
box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
border-bottom: 1px solid rgba(0,0,0,0.8);
}
.contents p, .contents ul, .contents h3 {
opacity: 0;
}
.contents li {
list-style: circle;
}
.contents:last-child {
}