-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_style.css
More file actions
85 lines (73 loc) · 1.26 KB
/
main_style.css
File metadata and controls
85 lines (73 loc) · 1.26 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
h1 {
background-color: black;
font-size: max(2vw, 7vw);
color: white;
text-align: center;
margin: 0;
}
nav {
background-color: gold;
justify-content: center;
display: flex;
text-align: center;
}
.navLink {
width: 10%;
height: fit-content;
font-size: 2vw;
padding: 0.5vw;
background-color: coral;
border: 1px solid;
margin: 0.5vw;
color:black;
text-decoration: none;
}
.navLink:hover {
background-color: rgb(255, 158, 122);
scale: 105%;
}
.row {
display: flex;
justify-content: center;
}
.teamFigures {
text-align: center;
width: 20%;
}
body {
background-color: black;
margin: 0;
}
.teamPics {
border-radius: 25px;
border: 2px magenta dotted;
width: 100%;
height: auto;
}
figcaption {
font-size: max(0.5vw, 2vw);
}
.welcome {
font-size: max(0.5vw, 2vw);
text-align: center;
padding: 0 30%;
}
.quoteDiv {
display: flex;
justify-content: center;
text-align: center;
font-size: max(0.5vw, 1.5vw);
color: white;
background-color: navy;
padding: 2% 0;
margin: 0;
}
footer {
/* justify-content: center; */
text-align: center;
background-color: white;
margin: 0;
}
.contact {
text-align: center;
}