-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader-styles.css
More file actions
59 lines (49 loc) · 1.02 KB
/
header-styles.css
File metadata and controls
59 lines (49 loc) · 1.02 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
@keyframes from-green {
from {color: green}
}
#header {
display: grid;
background-color: #2d2d2d;
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 60px;
padding: 10px;
z-index: 5;
align-items: center;
}
#header-text {
padding-left: 75px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: goldenrod;
animation-name: from-green;
animation-duration: 2s;
}
#header-menu {
position: absolute;
width: 40%;
height: 100px;
padding-right: 20px;
justify-self: end;
color: darkgoldenrod;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
animation-name: from-green;
animation-duration: 2s;
}
#projects-menu {
}
#projects-menu-hover {
width: 15%;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
#projects-menu-hover:hover {
background-color: green;
}