-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (62 loc) · 859 Bytes
/
style.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
body {
margin: 0;
}
body,
.header,
.line-select,
.footer {
display: flex;
flex-direction: column;
align-items: center;
}
/*SKIP BUTTONS*/
.skipButtons {
display: flex;
flex-direction: row;
font-size: 2rem;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}
a:hover {
background-color: #ddd;
color: black;
}
.logo {
height: 7rem;
display: flex;
}
h2 {
text-align: center;
font-weight: 700;
letter-spacing: 0.2rem;
font-size: 2.5rem;
}
select,
input {
margin: 8px 0px;
width: 24rem;
}
.hidden {
display: none;
}
header {
margin: 24px 0px;
width: 24rem;
}
svg {
height: 128px;
}
input[type="submit"] {
font-family: inherit;
font-weight: 700;
font-size: 1rem;
color: white;
background-color: rgba(17, 59, 146, 1);
border-radius: 4px;
}
footer {
text-align: center;
}