-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (53 loc) · 949 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
form{
width: 400px;
background-color: #ddd;
padding: 10px;
border-radius: 8px;
}
form input{
display: block;
width: 100%;
padding: 10px;
outline: none;
margin-bottom: 5px;
}
form h2{
text-align:center;
margin-bottom: 10px;
}
form textarea{
width: 100%;
max-width: 100%;
max-height: 150px;
min-height: 100px;
padding: 8px;
outline: none;
}
form select{
width: 100%;
padding: 10px;
outline: none;
margin-bottom: 5px;
}
form button{
width: 100%;
margin-top: 10px;
padding: 10px;
background-color: #a78d82;
border: none;
font-size: 20px;
border-radius: 8px;
cursor: pointer;
}