-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.b8cf0a4a.css
105 lines (88 loc) · 1.64 KB
/
about.b8cf0a4a.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#about-lightbox {
display: none;
position: fixed;
z-index: 999;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(1, 1, 1, 0.3);
}
#about-lightbox:target {
display: block;
}
#about-box {
display: flex;
position: absolute;
width: 30%;
min-width: 300px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: rgba(0, 0, 0, 0.9);
border-radius: 20px;
flex-direction: column;
align-content: flex-start;
align-items: center;
}
@media only screen and (orientation: landscape) and (max-device-width : 1024px) {
#about-box {
width: 60%;
}
}
.about-logo {
position: relative;
left: 50%;
transform: translateX(-50%);
margin-top: 1.5em;
max-height: 4.5rem;
max-width: 90%;
}
.about-info {
max-width: 90%;
margin: 20px 5% 0 5%;
line-height: 1.5em;
text-align: center;
}
.about-info a:visited {
color: steelblue;
}
.about-panels {
max-width: 100%;
margin: 0;
margin-bottom: 1em;
}
.about-panels .accordion-headers {
text-align: center;
margin-bottom: 7px;
}
.accordion {
color: white !important;
display: inline;
width: 33%;
}
.about-panels .accordion-panel h3:not(:first) {
margin-top: 2em;
margin-bottom: .3em;
}
.about-panels .accordion-panel p {
margin-top: 1em;
}
.about-panels .accordion-panel.active {
min-height: 150px;
}
.about-panels .accordion:hover span {
text-decoration: underline;
}
.about-panels .accordion::before {
content: '\f0da';
text-decoration: none !important;
font-family: 'Font Awesome 5 Free';
font-size: 1.2em;
font-weight: bold;
margin-right: .5em;
}
.about-panels .accordion.active::before {
content: '\f0d7';
}
/*# sourceMappingURL=/about.b8cf0a4a.css.map */