-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
78 lines (69 loc) · 1.28 KB
/
main.css
File metadata and controls
78 lines (69 loc) · 1.28 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
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
background-color: #FFC857;
}
.sidenav {
height: 100%;
width: 250px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #323031;
overflow-x: hidden;
padding-top: 20px;
}
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav h1 a{
padding: 6px 8px 6px 16px;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
color: white;
display: block;
}
.main {
margin-left: 250px;
margin-top: 0px;
padding: 0px 30px;
height: 100%;
z-index: 1;
top: 0;
left: 0;
overflow-x: hidden;
padding-top: 20px;
}
button {
padding: 5px 10px;
background-color: #177E89;
border: none;
font-family: Arial, Helvetica, sans-serif;
color: white;
font-size: 14px;
border-radius: 10px;
}
#btn-new-category {
padding: 8px 10px;
background-color: #084C61;
border: none;
font-family: Arial, Helvetica, sans-serif;
color: white;
font-size: 23px;
}
li:hover {
cursor: pointer;
}
img {
max-width: 100%;
height: auto;
}