-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
100 lines (82 loc) · 1.3 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
* {
box-sizing: border-box;
}
h2 {
font-weight : bold;
text-transform : uppercase;
letter-spacing : 4px;
}
p {
max-width :550px;
}
a {
color : #C64A00;
}
header {
text-align : center;
}
svg {
width : 200px;
}
.racingFlags {
padding : 1em;
text-align : center;
}
.body {
font-family: 'PT Sans Narrow', sans-serif;
color : black;
padding : 0 4em;
display : flex;
flex-direction : column;
align-content : center;
align-items : center;
}
.center {
text-align : center;
}
.logo {
width : 9em;
}
.content {
max-width : 90em;
}
.meetupDate {
margin: 2em;
padding : 1em 3em;
letter-spacing : 4px;
text-transform : uppercase;
border: 5px solid #C64A00;
display: inline-block;
}
.three-cols {
flex-direction : column;
justify-content : space-between;
display: flex;
}
@media screen and (min-width: 60em) {
.three-cols {
flex-direction : row;
}
}
.speaker {
padding : 2em;
margin : 1em;
background : #eeeeee;
text-align : center;
}
.speaker h3 {
color : white;
padding : 0.5em 0;
text-transform : uppercase;
letter-spacing : 2px;
background-color : #C64A00;
}
.speaker-name {
font-style : italic;
}
footer h2 {
margin-top : 2em;
text-transform : uppercase;
letter-spacing : 4px;
border-bottom : 5px solid #C64A00;
}