-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (88 loc) · 1.61 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
h1 {
background-color: #00000080;
height: 55px;
padding-top: 25px;
margin-top: -8px;
margin-left: -8px;
margin-right: -8px;
}
textarea {
width: 30%;
height: 360px;
background-color: #00000024;
border: 2px solid #ffffff80;
color: green;
font-size: 12pt;
resize: none;
transition: 0.075s;
}
textarea:hover,
textarea:focus {
background-color: #00000046;
border: 2px solid #ffffff;
}
textarea:hover::placeholder,
textarea:focus::placeholder {
color: #ffffff80;
}
body {
text-align: center;
background-color: black;
color: yellow;
font-family: 'PT Sans', sans-serif;
background-image: url("./muffin-time.png");
}
hr {
width: 50%;
border: none;
height: 2px;
background-image: linear-gradient(to right, #00000000, white, #00000000);
}
.button {
font-family: 'PT Sans', sans-serif;
font-size: 14pt;
background-color: #00000000;
border: 2px solid #ffffff80;
color: blue;
}
.button:hover {
border: 2px solid #ffffff;
}
.button:active {
background-color: #ffffff80;
}
::-webkit-scrollbar {
background-color: #00000040;
width: 8px;
}
::-webkit-scrollbar-thumb {
background-color: #ffffff80;
}
::-webkit-scrollbar-thumb:hover {
background-color: white;
}
::-webkit-scrollbar-button {
background-color: #ffffff40;
}
::-webkit-scrollbar-button:hover {
background-color: white;
}
input,
select {
background-color: #00000024;
border: 1px solid #ffffff80;
color: green;
font-family: 'PT Sans', sans-serif;
}
input:hover,
input:focus,
select:hover,
select:focus {
background-color: #00000046;
border: 1px solid #ffffff;
}
::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
color: #ffffff40;
}