-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader-nav.css
65 lines (65 loc) · 1.62 KB
/
header-nav.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
body #flex-container header nav {
display: flex;
font-size: medium;
width: 100%;
height: auto;
flex-direction: row;
justify-content: space-between;
}
body #flex-container header nav .left-group {
display: flex;
width: 100px;
height: auto;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
body #flex-container header nav .right-group {
display: flex;
width: 300px;
height: auto;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
body #flex-container header nav .right-group #apps-logo {
display: grid;
text-decoration: none;
width: 50px;
height: 50px;
align-items: center;
justify-items: center;
border-radius: 50%;
}
body #flex-container header nav .right-group #apps-logo:hover {
background: hsla(0, 0%, 0%, 0.1);
}
body #flex-container header nav .right-group #apps-logo .apps-logo {
display: grid;
width: 25px;
height: 25px;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
justify-items: center;
align-items: center;
}
body #flex-container header nav .right-group #apps-logo .apps-logo div {
width: 5px;
height: 5px;
background: rgb(88, 88, 88);
border-radius: 50%;
}
body #flex-container header nav .right-group #sign-in{
display: block;
text-decoration: none;
background:hsl(240, 100%, 50%);
color: white;
width: 100px;
height: 40px;
text-align: center;
line-height: 40px;
border-radius: 10%;
}
body #flex-container header nav .right-group #sign-in:hover {
background: hsl(205, 100%, 50%);
}