-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (45 loc) · 941 Bytes
/
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
@font-face {
font-family: 'sf_sports_nightregular';
src: url('sfsportsnight-webfont.woff2') format('woff2'),
url('sfsportsnight-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
header {
position: fixed;
width = 100%;
}
body {
overflow-x: hidden;
width = 100%;
}
h1 {
text-align: center;
font-size: 75px;
font-family: 'sf_sports_nightregular', sans-serif;
margin-bottom: 0px;
/* font-family: 'Bowlby One SC', cursive; */
}
h2 {
font-size: 80px;
text-align: center;
font-family: 'Great Vibes', cursive;
color: black;
margin-top: 0px;
/* text-shadow: 4px 4px 3px rgba(0,0,0,0.1); */
}
.grid {
display: grid;
border: 2px blue solid;
height: 500px;
width: 100px;
grid-template-columns: 25% 25% 2fr 1fr;
grid-template-rows: 200px 200px;
grid-gap: 10px 15px;
}
.team_image {
height: auto;
width: auto;
max-width: 100%;
max-height: 100%;
}