-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
71 lines (66 loc) · 1.18 KB
/
index.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
body,html{
margin:0;
padding:0;
text-decoration: none;
}
html {
font-size: 100%;
}
body {
background-color: #111;
}
@keyframes example {
0% {background-color: #000;}
25% {background-color: #000;}
50% {background-color: red;}
75% {background-color: red;}
}
/* The element to apply the animation to */
#body {
background-color: #111;
animation-name: example;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
#title{
padding: 10px;
background:rgb(255, 255, 255);
font-size:20px;
color:#000;
}
#name{
font-size: 42px;
text-align: center;
letter-spacing: 1px;
}
.clr{
clear: both;
float: none;
}
#content{
color:rgb(219, 236, 41);
margin-top:30px;
}
#content a{
border-radius: 25px;
border:1px solid #fff;
width:96%;
margin-bottom: 10px;
padding: 50px 0 50px 0;
display: inline-block;
font-size: 30px;
letter-spacing: 1px;
word-spacing: 3px;
text-align: center;
}
.supported.torching {
color: #fff;
}
.supported.torching span {
text-shadow: 2px 2px 25px rgba(255, 255, 255, 1);
}
.unsupported.torching {
background-color: #fff;
color: #ddd;
}