-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
95 lines (81 loc) · 1.51 KB
/
index.css
File metadata and controls
95 lines (81 loc) · 1.51 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
header {
padding: 40px;
text-align: center;
background: #242726;
color: white;
font-size: 30px;
}
header a:link, a:visited {
background-color: #e7b0ac;
color: rgb(69, 99, 233);
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
border: 2px solid rgb(252, 252, 252);
}
header img {
width: 70%;
height: 70%;
}
a:hover, a:active {
background-color: red;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 25%;
}
.row {
display: flex;
}
.column {
flex: 50%;
}
.box {
width: auto;
height: auto;
}
.collapsible {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active .collapsible:hover {
background-color: #ccc;
}
.content {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: auto;
transition: max-height 0.2s ease-out;
}
.collapsible:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 13px;
color: white;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.collapsiblecontent{
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}