-
Notifications
You must be signed in to change notification settings - Fork 163
/
style.css
120 lines (95 loc) · 1.47 KB
/
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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
/* ------- General Styles ------- */
body {
font-family: "Lato", sans-serif;
color: #6b1a22;
}
h2 {
font-size: 26px;
font-weight: 400;
margin: 0 10px 15px 10px;
text-align: center;
}
h3 {
font-size: 18px;
font-weight: 500;
}
p {
line-height: 1.5em;
margin: 0;
}
section {
padding: 20px;
}
section.alternate-background {
background-color: #a35766;
color: #ecdbc9;
}
main img {
width: 100px;
}
/* --- Groups & Items --- */
.group {
display: flex;
flex-direction: column;
}
.item {
flex: 1;
margin: 10px;
}
.item-double {
flex: 2;
}
/* ------- Navigation ------- */
header {
background-color: #83092e;
padding: 20px 20px 0 20px;
text-align: center;
}
.logo {
font-family: "Tangerine", cursive;
font-size: 72px;
color: #ecdbc9;
}
header nav ul li {
list-style-type: none;
}
header nav ul li a {
color: #ecdbc9;
text-decoration: none;
padding: 0 20px 0 0;
}
header nav ul li a:hover {
color: #bdbdbd;
text-decoration: none;
}
/* ------- Join Form ------- */
form {
border: 2px solid #6b1a22;
padding: 10px;
}
form label {
font-weight: bold;
}
form select,
form input {
margin-bottom: 20px;
width: 180px;
}
form button {
background-color: #83092e;
border: none;
color: #fff;
font-size: 24px;
padding: 15px;
width: 100%;
}
/* ------- Footer ------- */
footer {
background-color: #83092e;
}
footer p {
color: #fff;
text-align: center;
padding: 20px;
}
/* ------- Media Query ------- */