-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
91 lines (76 loc) · 1.12 KB
/
index.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
html, body {
width: 100%;
}
#root {
width: 100%;
}
#home {
height: 800px;
width: 100%;
}
#about {
height: 800px;
width: 100%;
padding: 5%;
}
#experience {
height: 800px;
width: 100%;
padding: 5%;
}
#projects {
height: 800px;
width: 100%;
padding: 5%;
}
#awards {
height: 800px;
width: 100%;
padding: 5%;
}
#logo-panel {
justify-items: center;
height: 400px;
width: 100%;
display: grid;
grid-template-columns: repeat(2, 1fr);
}
#footer {
width: 100%;
height: 80px;
}
#logo-panel > img {
max-width: 80%;
max-height: 80%
}
nav a:hover {
cursor: pointer;
}
.title {
margin-left: 10%;
position: absolute;
top: 50%;
transform: translateY(-50%);
font-style: italic;
font-weight: bold;
}
.contact {
display: flex;
justify-content: center;
flex-direction: row;
}
.contact .bi {
margin-left: 7.5px;
margin-right: 7.5px;
color: #ddd;
}
.contact .bi:hover {
color: #bbb;
cursor: pointer;
}
#footer h6 {
color: #eee;
padding-top: 10px;
margin: 0;
text-align: center;
}