-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (43 loc) · 912 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
42
43
44
45
46
47
48
49
50
51
52
53
54
/*Creating variables*/
:root{
--salmon:#EF9D71;
--black:#000;
--white:#fff;
--cyan:#AEDEE0;
--dsalmon:#532521;
--dcyan:#1f2f32;
}
body{
transition:background-color ease-out .5s;
}
.video-div{
clip-path: circle(var(--clip) at 50% 50%);
}
*::selection{
background-color: var(--salmon);
}
/*Made themes for body and will make text themes based on these */
body[theme="black"]{
background-color:var(--black);
}
body[theme="black"] .section{
color:var(--white);
}
body[theme="cyan"]{
background-color:var(--cyan);
}
body[theme="cyan"] .section{
color:var(--dcyan);
}
body[theme="salmon"]{
background-color:var(--salmon);
}
body[theme="salmon"] .section{
color:var(--dsalmon);
}
body[theme="white"]{
background-color: var(--white);
}
body[theme="white"] .section{
color: var(--black);
}