-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (50 loc) · 1.01 KB
/
style.css
File metadata and controls
61 lines (50 loc) · 1.01 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
body {
margin: 0;
background-color: #1E1E1E;
position: relative;
height: auto;
min-height: 100%;
}
p, h1, a {
font-family: Roboto, sans-serif;
color: #F6F6F6;
}
p {
line-height: 32px;
}
button {
cursor: pointer;
padding: 12px;
}
button:hover {
border: 1px solid #ffffff;
}
.container {
height: 100vh;
display: grid;
grid-template-columns: 50% 50%;
grid-template-areas: "column-1 column-2";
}
grid-item:nth-child(1) {grid-area: column-1;}
grid-item:nth-child(2) {grid-area: column-2}
@media (max-width: 600px) {
.container {
grid-template-columns: 1fr;
grid-template-areas: "column-1" "column-2";
}
}
.portrait {
background-image: url("img/ana-gomes-photo.jpeg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
min-height: 10vh;
}
.bio {
padding-left: 10vh;
padding-right: 10vh;
flex-direction: column;
justify-content: center;
display: flex;
height: 100vh;
}