-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (67 loc) · 1.33 KB
/
style.css
File metadata and controls
78 lines (67 loc) · 1.33 KB
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
body {
background-color: beige;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
box-sizing: border-box;
}
h1 {
display: flex;
justify-content: center;
}
#description {
display: flex;
justify-content: center;
}
form {
background-color: rgb(241, 237, 237);
max-width: 500px;
margin: 40px auto;
padding: 30px 20px;
border-radius: 5px;
box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
}
.form-control {
margin-bottom: 10px;
}
.form-control input,
.form-control select,
.form-control textarea {
border: 1px solid #777;
border-radius: 10px;
font-family: inherit;
padding: 15px;
display: block;
/* margin-bottom: 10px; */
width: 93%;
font-size: 15px;
background-color: #fff;
}
.form-control.inline label,
.form-control.inline input {
margin-right: 10px;
display: inline;
width: unset;
}
button {
background-color: unset;
font-family: inherit;
font-size: 20px;
display: block;
width: 100%;
margin-top: 30px;
margin-bottom: 20px;
border: 1px solid darkmagenta;
border-radius: 10px;
font-weight: bolder;
cursor: pointer;
padding: 10px;
}
button:hover {
background-color: darkmagenta;
color: #fff;
opacity: .6;
}
footer {
display: flex;
justify-content: center;
}