forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
97 lines (82 loc) · 1.47 KB
/
main.css
File metadata and controls
97 lines (82 loc) · 1.47 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
#1F2529 - Primary
#F74422 - Secondary
#A4C4D9 - Lighter Blue
#29384C - Darker Blue
#EBEDF3 - BG
*/
body {
background-color: #EBEDF3;
font-family: "Raleway", sans-serif;
}
h1 {
color: #F74422;
text-align: center;
font-family: "Raleway", sans-serif;
font-size: 50px;
padding-top: 50px;
padding-bottom: 20px;
}
h2 {
color: #F74422;
text-align: center;
font-family: "Raleway", sans-serif;
font-size: 30px;
padding-top: 30px;
padding-bottom: 10px;
}
p {
color: #1F2529;
text-align: center;
font-family: "Raleway", sans-serif;
font-size: 20px;
}
button{
margin: auto;
padding: 15px 32px;
background-color: #A4C4D9;
display: block;
border: black;
font-family: "Raleway", sans-serif;
}
.center {
margin-left: auto;
margin-right: auto;
}
img{
margin: auto;
display: block;
}
label{
color: #F74422;
font-size: 20px;
display: block;
text-align: center;
}
h3{
color: #F74422;
text-align: center;
font-size: 20px;
}
select {
display: block;
margin: 0 auto;
font-family: "Raleway", sans-serif;
text-align: center;
}
#field {
width: 500px;
height: 50px;
position: relative;
background:#29384C;
margin-left: auto;
margin-right: auto;
}
#box {
width: 50px;
height: 50px;
position: absolute;
background: #F74422;
margin-left: auto;
margin-right: auto;
}