-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGym Style.css
80 lines (77 loc) · 1.32 KB
/
Gym 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
body,
html {
width: 100%;
height: 100%;
font-family: "DM Sans", sans-serif;
background: url(Gym.jpg) no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6);
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
color: antiquewhite;
}
h1 {
font-size: 80px;
text-align: center;
}
h2 {
font-size: 20px;
text-align: center;
font-weight: 100;
opacity: 0.8;
}
.highlight {
color: #c92e2e;
}
.btn-primary {
width: 250px;
font-size: 20px;
background-color: #c92e2e;
border-color: #c92e2e;
cursor: pointer;
padding: 0.5rem 1rem;
text-transform: uppercase;
}
.btn-primary:hover {
background-color: #ee3636;
border-color: #ee3636;
border-width: 2px;
}
h2 {
font-weight: 100;
}
.text-center {
color: antiquewhite;
}
p {
font-weight: lighter;
font-size: smaller;
opacity: 0.8;
text-align: center;
}
.icon {
display: flex;
flex-flow: row wrap;
margin: 5px;
width: fit-content;
height: auto;
align-items: flex-end;
/* position: fixed; */
transition: all;
}
img {
border-color: aliceblue;
margin: 30px;
cursor: pointer;
opacity: 0.7;
}
img:hover {
transform: scale(1.3);
opacity: 1;
}