-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (56 loc) · 960 Bytes
/
Copy pathstyle.css
File metadata and controls
62 lines (56 loc) · 960 Bytes
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
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #435334;
color: #faf1e4;
}
main {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
main h1 {
font-size: 60px;
letter-spacing: 5px;
font-weight: bolder;
margin-bottom: 20px;
text-align: center;
}
main section input {
display: block;
width: 50%;
margin: 0 auto;
border: none;
border-radius: 5px;
color: #faf1e4;
background-color: #9eb384;
padding: 10px;
font-size: 16px;
}
main section button {
width: 120px;
height: 40px;
margin: 20px auto;
background-color: #9eb384;
color: #faf1e4;
border: none;
border-radius: 4px;
padding: 5px;
display: block;
transition: all 0.5s ease;
}
main section button:hover {
background-color: #faf1e4;
color: #9eb384;
}
main h2 {
font-size: 30px;
color: #faf1e4;
font-weight: bolder;
text-align: center;
letter-spacing: 4px;
}