-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
143 lines (118 loc) · 1.8 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
body {
background-image: url("background.png");
background-size: 100%;
text-align: center;
font-family: helvetica;
margin: 0 auto;
}
h1 {
text-transform: uppercase;
letter-spacing: -1px;
font-weight: 900;
color: white;
font-size: 160px;
text-shadow: 15px 12px #194570;
text-align: center;
}
h2 {
font-style: italic;
color: white;
font-weight: 100;
}
h3 {
color: #194570;
text-transform: capitalize;
letter-spacing: 2px;
}
@media (max-width: 1200px) {
h1 {
font-size: 100px;
text-shadow: 7px 8px #194570;
}
}
@media (max-width: 800px) {
h1 {
font-size: 60px;
}
}
@media (max-width: 600px) {
h1 {
font-size: 40px;
}
}
.row {
margin: 80px 0;
}
.btn-lg {
background-color: #FFF;
border-color: #FFF;
border-radius: 0;
letter-spacing: 2px;
padding: 22px 55px;
text-transform: uppercase;
font-weight: 800;
box-shadow: 15px 15px 0px #194570;
outline: 0;
}
.btn-lg:hover {
background: #194570;
color: white;
border: 1px solid #194570;
box-shadow: 15px 15px 0px #fff;
}
/* Sponsors */
.partner, .diamond, .gold, .food {
background: rgba(225, 225, 225, .5);
margin: 15px;
padding: 10px;
}
.sponsors img {
padding: 20px;
}
.sponsors .row {
margin: 0;
}
.partner img {
height: 160px;
width: auto;
}
.diamond img {
height: 90px;
width: auto;
}
.gold img {
height: 80px;
width: auto;
}
.gold-square img {
width: 110px;
height: auto;
}
.food img {
height: 150px;
width: auto;
}
a > img {
margin: 25px;
width: 75px;
height: 75px;
transition: all 0.3s ease-out;
}
a > img:hover {
width: 80px;
height: 80px;
}
table, .table {
background: white;
margin: 50px 0;
}
th {
background: purple;
color: white;
}
th:first-child {
text-align: center;
}
td:last-child {
text-align: left;
}