-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (42 loc) · 807 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
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
color: #b7b8c4;
background: rgb(15, 22, 26);
background: radial-gradient(circle, rgb(8, 11, 29) 0%, rgb(27, 27, 27) 100%);
background-size: 400% 400%;
animation: gradient 10s ease infinite;
}
a {
color: #b7b8c4;
}
button {
background-color: #336c7a;
border: 2px solid #142f3b;
border-radius: 4px;
padding: 3px 5px;
}
button:hover {
background-color: #226479;
border: 2px solid #29556e;
cursor: pointer;
}
.buttons {
background-color: #226479;
border: 2px solid #29556e;
border-radius: 4px;
padding: 5px 7px;
color: black;
width: 600px;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}