forked from PurePro4561/PurePro4561.github.io-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTC.css
41 lines (36 loc) · 795 Bytes
/
TC.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
.button {
background-image: linear-gradient(90deg, rgba(0,255,18,1) 0%, rgba(9,250,250,1) 100%);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 50px;
font-family: monospace;
font-size: 20px;
background-color: black;
color: black;
}
.button {
transition-duration: 0.8s;
}
.button:hover {
color: white;
background-image: linear-gradient(90deg, rgb(0, 234, 255) 0%, rgb(34, 0, 255) 100%);
font-size: 28px;
}
body {
background-color: black;
font-family: monospace;
font-size: 20px;
}
input {
font-size: 24px;
font-family: monospace;
}
select {
font-size: 24px;
font-family: monospace;
}