-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (113 loc) · 2.2 KB
/
Copy pathstyle.css
File metadata and controls
128 lines (113 loc) · 2.2 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@keyframes bgscroll {
0% {
background-position: 0vw 120vh, 0vw 240vh;
}
25% {
background-position: 50vw 90vh, 100vw 160vh;
}
50% {
background-position: 100vw 60vh, 200vw 120vh;
}
75% {
background-position: 150vw 30vh, 300vw 60vh;
}
100% {
background-position: 200vw 0vh, 400vw 0vh;
}
}
@keyframes rainbow {
0% {
color: #ffaaaa;
}
16% {
color: #fdfd88;
}
33% {
color: #aaffaa;
}
50% {
color: #aaffff;
}
67% {
color: #aaaaff;
}
83% {
color: #ffaaff;
}
100% {
color: #ffaaaa;
}
}
body {
background: #dcdcdc;
font-family: 'Noto Sans', sans-serif;
color: #000000;
background-image: url("hats.png"), url("pattern.png");
animation: bgscroll 60s linear infinite;
text-align: center;
border-radius: 8px;
}
body.dark {
color: #ffffff;
background-color: #000000;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
font-family: 'Kanit', sans-serif;
}
button {
height: 35px;
}
header {
display: flex;
flex-direction: row;
}
header button {
flex-grow: 1;
margin: 0 1em;
border: none;
outline: none;
background-color: #ffffff;
border-radius: 4px;
box-shadow: 4px 4px #00000044;
}
footer button {
border: none;
outline: none;
background-color: #ffffff;
border-radius: 4px;
box-shadow: 4px 4px #00000044;
}
main {
background-color: #ffffffce;
border-radius: 8px;
}
body.dark main {
background-color: #000000ce;
border-radius: 8px;
}
.x {
color: #ec7731;
}
.dx {
animation: rainbow 2s linear infinite;
font-weight: bold;
}
h1 {
color: #ff3030;
}
h2 {
color: #5050ff;
}
img {
transition-duration: 0.5s;
transition-property: all;
transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
box-shadow: 0px 0px 0px 100vw #00000000;
border-radius: 8px;
}
img:hover {
transform: scale(1.2);
box-shadow: 0px 0px 0px 100vw #00000088;
}