-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (124 loc) · 2.42 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
.hero {
display: grid;
justify-items: center;
align-items: center;
}
.button {
width: 220px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
display: inline-block;
text-align: center;
color: black;
border-radius: 5px;
cursor: pointer;
align-self: center;
padding: 10px;
margin: 20px;
z-index: 2;
}
.header {
list-style: none;
width: fill;
font-size: 90px;
font-weight: bold;
text-decoration: none;
text-align: center;
padding: 20px, 60px;
color: white;
align-self: center;
display: inline-block;
margin: 70px;
}
.longText {
list-style: none;
font-size: 18px;
font-weight: bold;
text-decoration: none;
text-align: left;
display: inline-block;
color: gray;
padding: 10px, 60px;
margin-left: 100px;
margin-right: 100px;
}
.margin80 {
margin: 80;
}
.text-center{
text-align: center;
}
body {
font-family: "Roman";
font-weight: 200;
font-size: 20px;
margin: 0;
padding: 0;
}
strong {
font-weight: 900;
font-size: 24px;
}
.soccerImage {
background: url("images/run.webp");
position: fixed;
/*-webkit-filter: blur(8px);*/
width: 100%;
height: 80vh;
background-size: cover;
position: relative;
z-index: -1;
background-attachment: fixed;
overflow: hidden;
}
.soccerImage:before{
content: '';
background: inherit;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
position: absolute;
background-attachment: fixed;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
z-index: -2;
}
.iconImage {
background-image: url("images/run.webp");
/*filter: blur(8px);*/
/*-webkit-filter: blur(8px);*/
/* Full height */
height: 120px;
width: 120px;
border-radius: 20px;
background-repeat: no-repeat;
background-size: cover;
}
.bg-text {
background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
color: white;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 100%;
padding: 20px;
}
.boldText {
font-weight: bold;
}
.margin-side {
margin-left: 100px;
margin-right: 100px;
}
.container-fluid {
margin-left: 100px;
margin-right: 100px;
color: gray;
}