-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
106 lines (88 loc) · 1.29 KB
/
main.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
header {
height: 50px;
background-color: #B8E5FF;
margin-bottom: 15px;
}
h1 {
text-align: center;
font-size: 65px;
margin-top: 23%;
}
h2 {
margin: 0 auto;
font-size: 45px;
}
.background {
height: 100%;
background-color: #B8E5FF;
}
button {
background-color: #FCFCFC;
border: none;
padding: 15px 32px;
text-align: center;
display: inline-block;
font-size: 16px;
}
button:hover {
background-color: #EBEBEB;
}
.button {
text-align: center;
margin-top: 10px;
}
form {
font-size: 30px;
text-align: center;
}
input[type=text], select {
width: 38%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
font-size: 20px;
}
input::placeholder {
font-size: 20px;
}
a {
font-size: 25px;
text-decoration: none;
color: black;
}
p {
padding-top: 10px;
font-size: 18px;
padding-bottom: 10px;
}
.content {
width: 60%;
margin: 0 auto;
}
li {
list-style: disc;
}
ul {
padding-bottom: 15px;
margin-left: 20px;
}
#start {
background-color: #B8E5FF;
float: right;
margin-bottom: 20px;
margin-top: 10px;
}
#start:hover {
background-color: #EBEBEB;
}
#line {
text-align: center;
}