-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (54 loc) · 1.07 KB
/
style.css
File metadata and controls
61 lines (54 loc) · 1.07 KB
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
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
html {
background: #000;
color: #fff;
font-family: 'Orbitron', sans-serif;
font-size: 3em;
line-height: 1.5;
margin: 0;
padding: 0;
}
form {
display: block;
margin: 0;
padding: 0;
text-align: center;
font-size: 3em;
}
h1 {
font-size: 2em;
margin: 0;
padding: 0;
color: #fff;
text-align: center;
}
input[type="text"] {
background: #000;
border: 2px solid #fff;
border-radius: 5px;
color: #fff;
font-size: 20px;
margin: 0;
padding: 0;
}
input[type="submit"] {
background-color: #4CAF50;
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
transition-duration: 0.4s;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
input[type="submit"]:active {
background-color: #228B22;
box-shadow: 0 5px #666;
transform: translateY(4px);
}