-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
86 lines (74 loc) · 1.24 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
body{
background-color: black;
padding-top: 20px;
}
h2{
color: rgb(255, 255, 255);
font-size: 400%;
font-weight: bolder;
text-align: center;
}
p{
color: cornsilk;
padding: 20px;
border: 2px solid whitesmoke;
margin: 80px;
font-size: 200%;
align-content: center;
font-style: italic;
text-align: center;
}
.Header{
color: whitesmoke;
height: auto;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
}
.Nav-links{
padding: 28px 0;
}
.Nav-links li{
display: inline-block;
margin: 0 15px;
}
.Nav-links li a{
text-decoration: none;
color: whitesmoke;
padding: 5px 0;
position :relative;
}
.Nav-links li a::after{
content:'';
background: #ff3d00;
width: 0;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
transition: width 0.5s;
}
.Nav-links li a:hover::after{
width: 100%;
}
h1{
color: whitesmoke;
text-align: center;
}
.Youtube{
display: flex;
padding: 7%;
justify-content: space-between;
}
h3{
color: wheat;
padding-inline: 10%;
display: flexbox;
}
.teamimg{
border: 10px solid whitesmoke;
border: 2px solid black;
padding-inline: 5%;
}