-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
84 lines (71 loc) · 1.24 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
body, html {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
font-family: 'Montserrat', sans-serif;
}
h2 {
color: #c65b2e;
}
.main-navigation {
position: sticky;
height: 50px;
top: 0;
background-color: rgba(30, 84, 147, 1);
}
.main-container {
display: flex;
flex-direction: column;
}
.main-content {
padding-bottom: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.main-footer {
display: flex;
height: 80px;
justify-content: space-evenly;
align-items: center;
background: #000;
width: 100%;
}
.main-footer > a > svg {
height: 5vh;
fill: rgba(255, 255, 255 ,100);
transition: 0.1s;
}
.main-footer > a:hover > svg {
transition: 0.1s;
transform: scale(1.1);
}
#hero, #location, #sponsors {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 20px;
}
#sponsors {
text-align: center;
}
#actions {
padding-top: 10px;
}
#cfp {
padding: 8px;
background-color: rgba(30, 84, 147, 1);
color: white;
text-decoration: none;
border-radius: 4px;
}
.location {
height: 200px;
text-align: center;
}
.contact-us {
height: 200px;
text-align: center;
padding-bottom: 200px;
}