-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheaderstyle.css
More file actions
72 lines (72 loc) · 1.77 KB
/
headerstyle.css
File metadata and controls
72 lines (72 loc) · 1.77 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
p{
font-family: Quicksand, Arial, Helvetica, sans-serif;
}
.title{
color: rgba(101,58,41,255);
font-weight: 700;
text-align: center;
font-size: 55px;
margin-top: 0px;
position: fixed;
right: 0px;
left: 0px;
top: 0px;
background-color: rgba(252,247,241,255);
height: 100px;
z-index: 10;
}
.headerbar{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
position: fixed;
left: 0px;
right: 0px;
top: 85px;
background-color: rgba(252,247,241,255);
height: 50px;
z-index: 10;
}
.headertitles{
margin-left: 22px;
margin-right: 22px;
color: rgba(101,58,41,255);
font-size: 17px;
font-weight: 500;
cursor: pointer;
border: none;
font-family: Quicksand, Arial, Helvetica, sans-serif;
background-color: rgba(252,247,241,255);
transition: color 1s, background-color 1s, box-shadow 1s;
border-radius: 8px;
z-index: 10;
}
.headertitles:hover{
background-color: rgba(101,58,41,255);
color: rgba(252,247,241,255);
font-weight: bold;
box-shadow:0px 5px 10px rgba(0, 0, 0, .15);
z-index: 10;
}
.headerblanks{
margin-left: 2px;
z-index: 10;
}
.button{
margin-left: 22px;
margin-right: 22px;
color: rgba(101,58,41,255);
font-size: 17px;
font-weight: 500;
cursor: pointer;
border: none;
font-family: Quicksand, Arial, Helvetica, sans-serif;
background-color: rgba(252,247,241,255);
transition: color 1s, background-color 1s, box-shadow 1s;
border-radius: 8px;
}
.button:hover{
background-color: rgba(101,58,41,255);
color: rgba(252,247,241,255);
font-weight: bold;
box-shadow:0px 5px 10px rgba(0, 0, 0, .15);
}