-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (58 loc) · 975 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
62
63
64
65
66
67
68
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
background-color: #333;
color: white;
}
.container {
margin: 10px 15px;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
h3 {
margin-bottom: 15px;
text-decoration: underline;
text-align: center;
}
p {
margin-bottom: 5px;
}
label {
margin: 5px 0;
display: inline-block;
}
input {
height: 30px;
outline: none;
border: none;
padding-left: 15px;
border-radius: 50px;
}
button {
width: 100%;
margin: 20px 0 10px 0;
height: 30px;
border: none;
cursor: pointer;
font-size: 15px;
background-color: rgb(43, 174, 255);
border-radius: 50px;
color: white;
}
button:hover {
background-color: rgb(255, 63, 63);
transition: 0.2s;
}
small {
display: block;
text-align: center;
opacity: 75%;
}