forked from TheZoom110/Esperanza-2023-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.css
101 lines (95 loc) · 1.66 KB
/
header.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
101
*{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.header {
position:sticky;
top:0;
width: 100%;
margin-bottom: 10px;
background-color: #15a1e7;
color: #fff;
padding: 15px;
z-index: 10;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
margin-top: auto;
margin-bottom: auto;
}
#logo-div {
float:left;
margin-right:min(10%, 10px);
}
#logo-div a {
width: fit-content;
margin-right:min(10%, 10px);
}
#logo-div img{
width:55px;
}
.cgec {
font-weight: bold;
}
nav li {
display: inline-block;
margin-top: 5px;vertical-align: bottom;
margin-right: 20px;
margin-top: 5px;
}
nav li:last-child {
margin-right: 0;
}
nav a {
color: #000000;
text-decoration: none;
font-size: 20px;
}
nav a:hover {
text-decoration: underline;
}
.helpline{
display: flex;
float: right;
margin-right: 50px;
vertical-align: top;
align-items: center;
flex-direction: column;
}
@media screen and (max-width: 750px){
.helpline{
display: none;
}
}
@media screen and (max-width: 525px){
.cgec{
display: none;
}
}
/*
.header{
background:linear-gradient(rgb(122, 122, 139),rgb(205, 156, 156));
padding: 1rem 2rem;
display: flex;
}
.nav{
display: flex;
align-items: center;
}
.nav ul{
display: flex;
align-items: center;
}
.items a{
padding: 0.5rem;
border-radius: 1rem;
text-decoration: none;
color: black;
font-weight: bold;
}
.items a:hover{
box-shadow: 3px 3px 10px 2px black;
} */