-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
100 lines (97 loc) · 1.5 KB
/
stylesheet.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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Merriweather', serif;
}
/* ----------------HOME PAGE: TOP-------------------*/
.grid {
background-attachment: scroll;
background-repeat: no-repeat;
background-size: 100%;
overflow: visible;
display: grid;
}
.grid.home {
background-image: url("images/homebackground.jpg");
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
grid-template-areas:
"icons title"
". menu"
". ."
". .";
padding-top: 70px;
padding-bottom: 1200px;
color: #333333;
}
.title.home {
grid-area: title;
text-align: right;
padding-right: 150px;
}
.icons {
grid-area: icons;
font-size: 30px;
width: 100%;
text-align: left;
padding-left: 150px;
}
.menu {
grid-area: menu;
padding-top: 70px;
text-align: right;
padding-right: 150px;
}
ul {
list-style-type: none;
}
.email {
padding-right: 75px;
color: #7D7B80;
}
/* ---------------------------ABOUT PAGE------------------------*/
.grid.about {
background-color: #F4C5B0;
display: grid;
}
.row {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 50px;
}
.row .headshot {
height: 220px;
width: 220px;
border-radius: 50%;
}
.row img {
height: 190px;
width: 200px;
padding-left: 200px;
padding-right: 200px;
}
.row .zelda .paintbrush .house {
height: 100px;
width: 120px;
}
.title.about {
text-align: center;
color: white;
padding: 80px;
font-size: 25px;
}
.music img {
height: 100px;
width: 145px;
}
.subtitle.about {
color: #333333;
}
.right {
text-align: right;
}
p {
font-size: 20px;
}