-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrew-styles.css
122 lines (119 loc) · 2.15 KB
/
crew-styles.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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
.container {
display: grid;
grid-template-columns: 1fr 1fr;
background-image: url(./assets/crew/background-crew-desktop.jpg);
grid-template-rows: 1fr 1fr;
height: 100vh;
width: 100vw;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.navbar {
grid-row: 1/2;
grid-column: 1/3;
display: flex;
justify-content: flex-end;
}
.logo {
height: 50px;
width: 50px;
margin: 50px auto 0 50px;
}
.navbar > nav {
margin-top: 25px;
align-items: center;
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(81.5485px);
height: 80px;
width: 60%;
position: absolute;
}
.navbar > nav > a {
position: relative;
text-decoration: none;
color: white;
left: 7rem;
top: 2rem;
margin-left: 34px;
margin-right: 73px;
font-size: 16px;
font-family: "Barlow Condensed", sans-serif;
padding-bottom: 26px;
}
.navbar > nav > a:hover,
.navbar > nav > a:active,
.navbar > nav > a:focus {
border-bottom: 2px solid white;
}
.navbar > nav > a > span {
font-weight: bolder;
}
.crew {
grid-row: 2/3;
grid-column: 1/2;
color: white;
height: 100%;
}
.crew > p {
margin-left: 25%;
margin-bottom: 75px;
font-family: "Barlow", sans-serif;
font-size: 28px;
}
.crew-line {
margin-top: 100px;
}
.post,
.name {
margin-left: 25%;
margin-top: 35px;
font-family: "Bellefair", serif;
font-size: 32px;
font-weight: normal;
}
.post,
.number {
color: #8f9196;
}
#post-info {
font-size: 18px;
line-height: 2rem;
font-family: "Barlow", sans-serif;
margin-top: 50px;
}
.crew .person-img {
grid-row: 2/3;
grid-column: 2/3;
height: 100%;
}
.portrait {
margin-left: 25%;
margin-top: 50px;
height: 550px;
width: 450px;
}
.dot-bar {
display: flex;
justify-content: space-evenly;
width: 25%;
margin-left: 25%;
margin-bottom: 30px;
}
.dot {
height: 15px;
width: 15px;
background-color: #8f9196;
border-radius: 100%;
margin: 5px;
}
.dot:hover,
.dot:active,
.dot:focus {
background-color: white;
}