-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (49 loc) · 876 Bytes
/
style.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
body{
margin: 0;
padding: 0;
}
.navBar {
background-color: darkorange;
width: 100%;
height: auto;
display: flex;
align-items: center;
}
.navBar img {
height: 40px;
padding: 10px;
}
.options {
display: flex;
flex-grow: 1; /* Allow the options to fill remaining space */
justify-content: center;
}
.option {
transition: 0.5s;
}
.option:hover{
background-color: rgb(248, 209, 162);
transition: 0.5s;
cursor: pointer;
}
.option:active{
background-color: rgba(248, 209, 162,0);
transition: 0.1s;
cursor: pointer;
user-select: none;
}
.option span {
display: block;
padding: 20px;
/* font-weight: bold; */
font-family: Arial, Helvetica, sans-serif;
}
.content{
margin-top: 20px;
}
.schedule{
width: 90%;
height: 85%;
border: 1px solid black;
margin: 0 auto;
}