-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
158 lines (133 loc) · 2.35 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
@charset "UTF-8";
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: 'Josefin Sans', sans-serif;
}
body {
background-color: red;
}
header {
min-height: 10vh;
background-color: #1b1b1b;
padding: 1.3rem 0rem;
position: fixed;
width: 100%;
margin: auto;
z-index: 99;
}
nav {
display: flex;
flex-direction: row;
}
#navImg {
justify-content: flex-start;
flex-grow: 3;
padding-left: 50px;
}
#navImg img {
height: 70px;
color: white;
}
nav ul {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: center;
}
li {
padding-right: 60px;
list-style-type: none;
}
nav ul li a {
text-decoration: none;
color: white;
font-size: 2rem;
text-transform: uppercase;
}
section {
min-height: 100vh;
background-color: red;
background: url('https://res.cloudinary.com/codier/image/upload/v1610509461/s6tx81ata2tal3epwnu3.jpg') no-repeat center 115px fixed;
background-size: cover;
}
.container {
padding-top: 250px;
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
color: white;
}
.info {
width: 40%;
}
.info h1 {
text-align: center;
font-size: 4em;
margin-bottom: 20px;
}
.info p {
line-height: 2rem;
}
blockquote {
font-family: Georgia, serif;
position: absolute;
margin: 0.5rem;
padding: 0.5em 2em 0.5em 3em;
}
blockquote::before {
font-family: Georgia, serif;
position: absolute;
font-size: 4em;
line-height: 1;
top: 0;
left: 0;
content: "\201C";
}
blockquote::after {
font-family: Georgia, serif;
position: absolute;
float: right;
font-size: 4em;
line-height: 1;
right: 0;
bottom: -0.5em;
content: "\201D";
}
#bio {
background: url('https://res.cloudinary.com/codier/image/upload/v1610554675/ck7p6ahhuriv9n9wajxb.jpg')no-repeat center center fixed;
background-size: cover;
}
.container-bio {
padding-top: 550px;
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
color: white;
padding-right: 30px;
}
.container-bio .info {
border-radius: 25px;
padding: 12px;
background-color: rgba(0, 0, 0, 0.2);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
}
footer {
height: 100px;
background-color: #1b1b1b;
text-align: center;
color: white;
}
footer h3 {
padding-top: 50px;
}
footer h3 a {
text-decoration: none;
color: white;
}