-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (93 loc) · 1.7 KB
/
styles.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
107
body {
background-color: ghostwhite;
letter-spacing: .1rem;
}
#header, #section, #footer {
background-color: lightgrey;
}
#header {
font-family: 'Concert One', cursive;
border-radius: .25rem;
width: 60rem;
height: 16rem;
margin: 0 auto;
background-image: url('./dc.jpg');
background-position: center;
background-size: 125% 300%;
}
h1 {
font-size: 5rem;
}
span {
font-size: 2rem;
}
#section {
border-radius: .25rem;
width: 40rem;
height: 22rem;
margin: 0 auto;
text-align: center;
padding: 3rem;
padding-top: 1.5rem;
}
.holder {
display: inline-block;
margin: 0 4rem;
}
.small {
font-size: .95rem;
font-family: 'Work Sans', sans-serif;
font-weight: bold;
}
input {
width: 10rem;
height: 2rem;
font-size: 1.1rem;
border-radius: .25rem;
font-family: 'Work Sans', sans-serif;
}
label {
font-size: 1.25rem;
font-family: 'Concert One', cursive;
}
#ans {
font-size: 1.5rem;
font-family: 'Concert One', cursive;
}
button {
width: 8rem;
height: 2rem;
border-radius: .25rem;
border: none;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
background-color: slategrey;
color: white;
font-family: 'Work Sans', sans-serif;
font-size: 1rem;
margin-top: 2rem;
}
button:hover {
background-color: black;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
#section .error {
color: white;
font-weight: bold;
font-family: 'Work Sans', sans-serif;
font-size: 1.25rem;
margin-top: 3rem;
}
#header.space, .space {
margin-bottom: 2rem;
}
#footer {
width: 100%;
height: 2rem;
position: fixed;
padding-bottom: 1rem;
bottom: 0;
left: 0;
text-align: center;
font-family: 'Work Sans', sans-serif;
}