-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
67 lines (59 loc) · 1.04 KB
/
stylesheet.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
html {
margin: 0;
padding: 0;
}
body {
font-family: 'Handlee', cursive;
font-size: 13pt;
background-color: #efefef;
padding: 100px;
margin: 100px;;
}
h1 {
font-size: 15pt;
color: #20bcd5;
text-align: center;
padding: 18px 0 18px 0;
margin: 0 0 15px 0;
}
h1 span {
border: 4px dashed #20bcd5;
padding: 10px;
}
.section {
background-color: #fff;
padding: 15px;
margin-bottom: 10px;
border-radius: 10px;
text-align: center;
}
form {
text-align: center;
margin-top: 0;
padding: 15px;
}
#submit {
background-color: #3fb6b2;
padding: 12px 45px;
border-radius: 5px;
cursor: pointer;
color: #ffffff;
border: none;
outline: none;
font-weight: bold;
margin-bottom: 15px;
}
input, textarea {
margin-bottom: 15px;
font-size: 11pt;
padding: 15px 10px 10px;
border: 1px solid #cecece;
background-color: #efefef;
color: #787575;
border-radius: 5px;
outline: none;
}
textarea {
padding: 15px;
text-align: center;
}