-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (68 loc) · 1.21 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #464866;
text-align: center;
}
header {
text-align: center;
padding: 20px;
color: white;
}
main {
margin: auto;
display: flex;
justify-content: center;
}
.box {
background-color: white;
padding: 10px;
margin: 0 10px 0 10px;
width: 400px;
height: 200px;
border-radius: 5px;
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.356);
}
.input {
display: block;
width: 200px;
height: 50px;
margin: auto;
margin-top: 10px;
border-color: rgba(128, 128, 128, 0.192);
border-radius: 5px;
}
input::placeholder {
text-align: center;
}
.btn {
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
color: white;
background-color: #F45D01;
border-radius: 5px;
border: none;
margin-top: 10px;
}
.btn:hover {
cursor: pointer;
padding: 11px;
}
footer {
text-align: center;
margin-top: 50px;
color: white;
}
footer a {
color: white;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}