-
Notifications
You must be signed in to change notification settings - Fork 86
/
style.css
68 lines (59 loc) · 1.05 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
:root {
--red: #ff9393;
--green: #93ffa9;
--blue: #93adff;
}
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
font-family: Verdana, serif;
}
body {
background-color: #222222;
color: white;
padding: 50px 5%;
text-align: center;
}
input {
width: 700px;
display: block;
border: 5px solid var(--blue);
padding: 15px 20px;
margin: 5px auto;
font-size: 25px;
font-family: monospace;
background-color: inherit;
color: inherit;
border-radius: 10px;
transition: border-color 250ms;
}
input:focus {
border-color: var(--green);
outline: none;
}
button {
width: 700px;
background-color: var(--blue);
color: #222222;
font-size: 20px;
padding: 30px;
border: none;
border-radius: 10px;
text-decoration: none;
font-weight: bold;
cursor: pointer;
transition: background-color 250ms;
}
button:hover {
background-color: var(--green);
}
p {
margin: 20px 0px;
}
a {
color: var(--red);
}
a:hover {
text-decoration: none;
}