-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
75 lines (66 loc) · 1.34 KB
/
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
69
70
71
72
73
74
75
/* CSS files add styling rules to your content */
/*gradient*/
body {
background: linear-gradient(235deg, #000000, #212e20, #000000, #212e20, #000000, #212e20, #000000, #212e20, #000000, #212e20);
background-size: 2000% 2000%;
-webkit-animation: AnimationName 41s ease infinite;
-moz-animation: AnimationName 41s ease infinite;
animation: AnimationName 41s ease infinite;
}
@-webkit-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes AnimationName {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
body {
font-family: Consolas, "Roboto Mono", monospace;
color: #0f3;
margin: 2em;
line-height: 150%;
}
/* unvisited link */
a:link {
color: #0f0;
}
/* visited link */
a:visited {
color: white;
}
h1 {
font-style: italic;
font-weight: 200%;
color: #fff;
}
#input{
width: 90%;
white-space: nowrap;
}
#txt{
width: 80%;
}
#opt{
width: 90%;
white-space: nowrap;
}
#optacc{
display: inline-block;
width: 60%;
}
#optrate{
display: inline-block;
width: 40%;
white-space: nowrap;
}
#rate{
width: 50%;
}