-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet_header.css
More file actions
99 lines (83 loc) · 1.74 KB
/
stylesheet_header.css
File metadata and controls
99 lines (83 loc) · 1.74 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
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.first-part-header{
display : flex;
align-items: center;
background-color: rgb(236, 247, 247);
}
#logo {
width: max(3.5rem, 7.5vw);
}
h1 {
color: rgb(18, 18, 113);
font-size: min(4.5vw, 2.5rem);
width: 90vw;
font-family: Tahoma, sans-serif;
}
#account{
margin-left: auto;
margin-right: 20px;
border: none;
font-size: min(2vw, 1.3em);
font-family: Helvetica, sans-serif;
}
#account-button{
text-decoration: none;
color : rgb(238, 249, 249);
background-color: #17198e;
padding : 8px 14px;
border-radius: 10px;
}
#account-button:hover{
color : rgb(236, 247, 247);
background-color: #2f31a6;
}
#account-button:active{
color : rgb(252, 241, 92);
}
.border{
background-color: #0e0f7d;
width : 100vw;
padding: 0.5em 0 0.5em 0;
}
#unordered-list-border{
display: flex;
justify-content: space-evenly;
font-family: Helvetica, sans-serif;
}
#unordered-list-border .top-button {
position: relative;
text-decoration: none;
}
#unordered-list-border .top-button::after {
content: "";
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
background-color: rgb(197, 232, 232);
visibility: hidden;
transition: all 0.3s ease-in-out;
}
#unordered-list-border .top-button:hover::after {
visibility: visible;
width: 100%;
}
#unordered-list-border .top-button:hover:active::after {
background-color: yellow;
}
.unordered-list-border-item{
list-style-type: none;
}
.top-button{
color : rgb(197, 232, 232);
text-decoration: none;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.top-button:active {
color : yellow;
}