-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (103 loc) · 1.63 KB
/
Copy pathstyle.css
File metadata and controls
120 lines (103 loc) · 1.63 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: Roboto;
font-size: 20px;
background-color: crimson;
}
a {
text-decoration: none;
color: black;
cursor: pointer;
}
h1 {
margin-left: 20px;
font-weight: 900;
font-size: 4rem;
text-transform: uppercase;
}
h2 {
font-size: 3.5rem;
margin: 5rem;
text-align: center;
}
h3 {
text-align: center;
font-size: 3rem;
margin: 5rem;
}
p {
line-height: 4rem;
text-align: center;
font-size: 2rem;
margin: 5rem;
}
p span:hover {
font-size: 4rem;
}
span:hover {
color: whitesmoke;
}
/* Headers */
header {
display: flex;
align-items: center;
justify-content: space-between;
height: 20vh;
width: 100%;
margin-top: 3rem;
margin-bottom: 2rem;
}
.top-nav ul {
display: flex;
list-style: none;
}
.top-nav li {
margin: 0 30px;
}
a:hover {
color: whitesmoke;
}
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 2rem;
}
.main-page-content {
font-size: 2rem;
text-transform: uppercase;
text-align: center;
margin-top: 20px;
margin-left: 20px;
}
/* class page */
.class {
font-size: 2rem;
margin: 5rem;
}
/* video containers */
.container {
display: flex;
margin: 2rem;
padding: 1rem;
}
.workout-container {
justify-content: space-evenly;
}
@media (max-width: 700px) {
h1 {
font-size: 1.5rem;
}
header {
display: flex;
flex-direction: column;
}
.main-page-content {
line-height: 2rem;
font-size: 1rem;
text-align: start;
}
}