-
Notifications
You must be signed in to change notification settings - Fork 2
/
page.css
124 lines (123 loc) · 2.55 KB
/
page.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
background-color: #191919; /* good background color with dark mode */
}
h1,h2,h3 {
color: #fff;
align: center;
}
p,li,pre,summary,details {
color: rgb(163,163,163);
}
a {
color: #03e9f4;
text-decoration: none;
}
#an:hover {
text-decoration: underline;
}
button {
outline: none;
color: #03e9f4; /* good color with dark mode */
border: 1px solid transparent;
background-color: #191919;
transition: all .3s ease-in-out
}
button:hover,#btnon {
background-color: #03e9f4;
color: #191919;
box-shadow: 0 0 5px #03e9f4,
0 0 25px #03e9f4,
0 0 50px #03e9f4,
0 0 200px #03e9f4;
}
.nav, .footer {
position: absolute;
left: 50%;
transform: translate(-50%);
}
#fta {
color: gray !important;
text-decoration: none;
}
#fta:hover {
color: gray !important;
text-decoration: underline;
}
#act {
background-color: #2c2c2c;
width: 85%;
margin-left: 35px;
word-break: break-all;
box-shadow: 0 0 1px #03e9f4,
0 0 5px #03e9f4,
0 0 10px #03e9f4,
0 0 40px #03e9f4;
}
#act p {
margin-left: 30px;
margin-right: 15px;
}
#act h3 {
padding-left: 10px;
padding-top: 7px;
}
audio {
display: flex;
}
#arttit {
margin-left: 5%;
}
#artpar {
margin-left: 8%;
margin-right: 8%;
}
ul {
margin-left: 10%;
margin-right: 10%;
}
li {
padding-top: 5px;
}
pre {
font-family: consolas;
}
@keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
100% { background-position: 500px 1000px, 400px 400px, 300px 300px }
}
@-moz-keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
100% { background-position: 500px 1000px, 400px 400px, 300px 300px }
}
@-webkit-keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
50% { background-color: #b4cfe0 }
100% {
background-position: 500px 1000px, 400px 400px, 300px 300px;
background-color: #6b92b9;
}
}
@-ms-keyframes snow {
0% { background-position: 0px 0px, 0px 0px, 0px 0px }
100% { background-position: 500px 1000px, 400px 400px, 300px 300px }
}
body {
margin: 0;
}
@keyframes snow{
0% {
background-position: 0 0, 0 0;
}
100% {
background-position: 500px 500px, 1000px 500px;
}
}
html {
webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
filter: gray;
}