-
Notifications
You must be signed in to change notification settings - Fork 4
/
vettec.css
108 lines (91 loc) · 1.55 KB
/
vettec.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
body {
margin: 0;
}
.hero_image {
background-image: url(images/hero_image.jpg);
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 400px;
border-bottom: solid 8px #47566b;
}
@media only screen and (max-width: 1000px) {
.hero_image {
height: 200px;
}
}
.page_info {
text-align: left;
margin-left: 30%;
margin-right: 30%;
margin-top: 0px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-variant: normal;
color: rgb(82, 82, 82);
}
@media only screen and (max-width: 1000px) {
.page_info {
margin-left: 10%;
margin-right: 10%;
}
}
h1 {
font-weight: 500;
font-size: 40px;
margin-bottom: 10px;
text-align: center;
}
h2 {
font-weight: 500;
font-size: 24px;
}
p {
font-size: 20px;
}
.medal {
padding-top: 30px;
text-align: center;
}
.bunker_labs_logo {
margin-top: 10%;
width: 200px;
}
.supporter-logos {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.supporter-logos li {
width: 40%;
margin: 1%;
list-style: none;
}
.supporter-logos ul {
padding: 0;
}
.supporter-logos img {
max-height: 100px;
max-width: 100%;
}
/* FOOTER */
#flex-content-container {
flex: 1;
}
#footer {
position: relative;
width: 100%;
min-height: 100%;
color: black;
font-family: "Helvetica Neue", Helvetica;
padding: 5px 0px;
margin-top: 30px;
font-weight: 100;
text-align: center;
}
.underline {
font-size: 15px;
text-decoration: none;
color: black;
}