-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.css
More file actions
84 lines (72 loc) · 1.27 KB
/
homepage.css
File metadata and controls
84 lines (72 loc) · 1.27 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
.homepage{
background-color: rgb(249,245,239);
border: 1px solid rgb(235, 218, 193);
padding-top: 70px;
padding-left: 80px;
padding-right: 80px;
padding-bottom: 70px;
}
@media (max-width:800px){
.homepage-grid{
flex-direction: column;
text-align: center;
}
.profile-picture{
top: 10px;
left: 10px;
width: 50%;
}
}
@media (max-width:1100px){
.content .name{
font-size: 40px;
}
.content .short-bio{
font-size: 15px;
}
.content .about-me{
font-size: 15px;
}
.content{
word-wrap: break-word;
overflow-wrap: break-word;
}
}
.homepage-grid{
display: flex;
flex-direction: row;
}
.content{
width: 800px;
padding: 50px 40px;
flex-grow: wrap;
}
.name{
font-size: 50px;
font-weight: bold;
color: rgb(145, 108, 105);
margin-bottom: 20px;
}
.short-bio{
font-size: 30px;
font-weight: bold;
color: rgb(182, 148, 145);
}
.about-me{
color: rgb(182, 148, 145);
font-size: 20px;
}
.blank{
background-color: rgb(145, 108, 105);
width: 400px;
height: 400px;
position: relative;
}
.profile-picture{
width: 400px;
height: 400px;
object-fit: cover;
position: absolute;
top: -15px;
left: -15px;
}