-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (51 loc) · 832 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
53
54
55
56
57
58
59
60
61
* {
color: white;
font-family: "Lilita One", sans-serif;
}
body {
background: linear-gradient(90deg, rgba(74, 0, 0, 1) 0%, rgba(255, 0, 0, 1) 50%, rgba(255, 66, 66, 1) 80%);
}
form {
margin-top: 10px;
}
table,
th,
td {
border: 1px solid;
}
td{
padding: 4px;
}
table {
border-collapse: collapse;
}
button,
form input,
form select {
background: none;
border-radius: 5px;
border: 2px white solid;
color: white;
transition: color .3s, background-color .2s;
}
form select * {
color: black;
}
::placeholder {
color: white;
opacity: 0.75;
}
form input:focus,
form input:focus::placeholder,
form input:hover,
button:hover,
button:focus,
form select:hover,
form select:focus {
background-color: white;
outline: none;
color: black;
}
#amount {
width: 5%;
}