-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (61 loc) · 999 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@font-face {
font-family: "charan";
src: url("/font/659dbdfd5a080be8d348316f_PPNeueMachina_-Light.ttf");
}
:root{
--salmon: #fa8072;
--black: #000;
--white :#fff;
--dsalmon:#532521;
--dcyan: #1f2f32;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
/* font-family: "charan"; */
}
html , body{
height: 100%;
width: 100%;
}
*::selection
{
background-color:var(--salmon);
}
body[theme="black"]
{
background-color: var(--black);
}
body[theme="black"] .section
{
color: var(--white);
}
body[theme="cyan"]
{
background-color: rgb(156, 215, 215);
}
body[theme="cyan"] .section
{
color: var(--black);
}
body[theme="white"]
{
background-color: var(--white);
}
body[theme="white"] .section
{
color: var(--black);
}
body[theme="salmon"]
{
background-color: var(--salmon);
}
body[theme="salmon"]
{
color: var(--dsalmon);
}
.videodiv
{
clip-path:circle(var(--clip) at 50% 50%)
}