-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
106 lines (77 loc) · 1.57 KB
/
css.css
File metadata and controls
106 lines (77 loc) · 1.57 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
96
97
98
99
100
101
102
103
104
105
106
:root{
--acc-txt-color:#FFF;
--txt-color:#FFF;
--ui-color:#1A191B;
--bg-color:#25242A;
--inside-bg:#29292e;
--after-ui:#494949;
}
#glowing-box-section {
color:black;
}
.glowing-box {
display: inline;
border-radius: 10px;
box-shadow: 0 0 20px rgba(63, 26, 80, 0.7), 0 0 40px rgba(118, 50, 150, 0.7),
0 0 60px rgba(168, 71, 212, 0.7);
transition: box-shadow 0.3s;
}
p.not_white{
color:#29292e;
}
span{
display:inline
}
ul{
background-color: var(--inside-bg);
border-radius: 25px;
}
p,h2 {
font-family: DM Sans, Roboto, -apple-system, Segoe UI, sans-serif;
color: var(--txt-color);
max-width: 100%;
}
p.smaller{
font-size:small;
font-style:italic;
}
img{
background-color: var(--ui-color);
border-radius: 25px;
}
body{
background-color: var(--bg-color);
}
.accordion {
background-color:var(--ui-color);
color: var(--acc-txt-color);
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
box-shadow: 0px 0px 25px #00000070
}
.active, .accordion:hover {
background-color: var(--after-ui);
}
.accordion:after {
content: '\002B';
color: var(--after-ui);
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.panel {
padding: 0 18px;
background-color: var(--inside-bg);
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}