-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (62 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (62 loc) · 1.24 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
body{
margin: 0;
}
.header{
background-color: #0F52BA;
display: flex;
align-items: baseline;
padding: .5rem;
gap: 1rem;
}
.link{
background: none;
border: none;
text-decoration: none;
color: #f7e7ce;
font-family: inherit;
font-size: inherit;
cursor: pointer;
padding: 0;
}
.dropdown > .link:focus,
.link:hover {
color: #D4AF37;
}
.dropdown {
position: relative;
}
.dropdown-menu{
position: absolute;
left: 0;
top: calc(100% + .5rem);
background-color: #2286d8;
padding: .75rem;
border-radius: .25rem;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
opacity: .0;
pointer-events: auto;
transform: translateY(-10px);
transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}
.dropdown > .link:focus + .dropdown-menu {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
main{
background-color: #F8F8FF;
margin-left: 20px;
display: flex;
display: -webkit-flex;
flex-direction:column;
-webkit-flex-direction: column;
align-items: flex-start;
-webkit-align-items: flex-start;
flex-wrap: wrap;
z-index: 1;
}
footer {
font-size: .75rem;
font-weight: 100;
opacity: .5;
}