-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.css
90 lines (79 loc) · 1.42 KB
/
sidebar.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
@media only screen and (min-width: 600px) {
.sidenav {
width: 200px;
position: fixed;
z-index: 1;
top: 60px;
left: 10px;
background: #eee;
overflow-x: hidden;
padding: 6px 5px 20px 10px;
}
}
@media only screen and (max-width: 600px) {
.sidenav {
width:100%;
position:static;
overflow-x:hidden;
padding: 6px 5px 20px 10px;
}
}
.sidenav a {
display: block;
}
.titolinav {
padding:0px 1px 0px;
}
.main {
/* Same width as the sidebar + left position in px */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media only screen and (min-width: 600px) {
.main {
margin-left: 140px;
}
}
@media only screen and (max-width: 600px) {
.main {
margin-left: 0px;
}
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
.event {
margin-top: 10px;
font-weight: 500;
font-size: 14px;
padding: 3px 6px;
border-radius: 4px;
background-color: #f7c30d;
color: #fff;
word-wrap: break-word;
}
.event.green {
background-color: #51ce57;
}
.event.blue {
background-color: #518fce;
}
.event.red {
background-color: #ce5151;
}
.event.yellow {
background-color: #9fbf00;
}
.event.purple {
background-color: #ff00ee;
}
.event.lightblue {
background-color: #00f7ff;
}
.event.orange {
background-color: #ffa600;
}
.event.violet{
background-color:#b134eb;
}