-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (58 loc) · 1.1 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #f3533b;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
form {
background-color: #fa9f42;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
max-width: 450px;
height: 200px;
padding: 10px;
border: 1px solid black;
border-radius: 10px;
}
form h4 {
align-self: end;
padding: 0 10px;
}
form h1 {
padding: 0 10px;
margin: 0 10px;
}
form input {
border: 1px solid black;
outline: none;
background-color: #8dd67a;
width: 90%;
margin: 0 10px;
padding: 8px 5px;
}
form input::placeholder {
color: black;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.btn {
width: 90%;
margin: 0 10px;
background-color: #5acec9;
padding: 5px;
border: 1px solid black;
cursor: pointer;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.btn:hover {
filter: brightness(0.9);
}