-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
66 lines (57 loc) · 1.58 KB
/
index.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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #303030;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #f59014;
color: white;
}
.collapsible {
background-color: #eee;
color: black;
cursor: pointer;
padding: 18px;
width: 50%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #555;
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: #000;
color: white;
}
#banner {
background-color: #000000;
opacity: 0.8;
background-image: linear-gradient(30deg, #f59014 12%, transparent 12.5%, transparent 87%, #f59014 87.5%, #f59014), linear-gradient(150deg, #f59014 12%, transparent 12.5%, transparent 87%, #f59014 87.5%, #f59014), linear-gradient(30deg, #f59014 12%, transparent 12.5%, transparent 87%, #f59014 87.5%, #f59014), linear-gradient(150deg, #f59014 12%, transparent 12.5%, transparent 87%, #f59014 87.5%, #f59014), linear-gradient(60deg, #f6c56e 25%, transparent 25.5%, transparent 75%, #f6c56e 75%, #f6c56e), linear-gradient(60deg, #f6c56e 25%, transparent 25.5%, transparent 75%, #f6c56e 75%, #f6c56e);
background-size: 20px 35px;
background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;
background-clip: border-box;
}
.titlehead {
font-size: 40px;
}