-
Notifications
You must be signed in to change notification settings - Fork 2
/
dashboard.css
87 lines (74 loc) · 1.34 KB
/
dashboard.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
@import url('https://fonts.googleapis.com/css?family=Lato:300,400');
body {
font-family: Lato;
font-weight: 300;
}
#menu {
font-weight: 400;
background: #DDD;
text-align: center;
padding: 5px;
line-height: 1.5;
border-radius: 3px;
overflow: auto;
}
#menu a {
text-decoration: none;
padding: 5px 10px;
border-radius: 5px;
}
#menu a:hover {
background: #BBB;
}
main > section {
display: none;
padding: 20px 5px;
}
section#viewHome {
display: block;
}
section h1 {
margin: 10px 0px;
font-size: 1.2em;
}
#infoBox, #errorBox, #loadingBox {
width: 80%;
margin: 10px auto;
color: white;
text-align: center;
padding: 5px;
border-radius: 3px;
}
#infoBox>header, #errorBox>header, #loadingBox>header {
float: right;
margin-right: 5px;
}
#infoBox>header:hover, #errorBox>header:hover, #loadingBox>header:hover {
transition: all 0.2s;
font-weight: bold;
cursor: pointer;
}
#loadingBox {
background: #7CB3E9;
}
#infoBox {
background: #393;
}
#errorBox {
background: #F50;
}
footer {
background: #DDD;
padding: 5px 10px;
font-size: 0.8em;
text-align: center;
border-radius: 3px;
}
div {
/* border: 1px solid #DDD; */
border-radius: 4px;
padding: 5px;
max-width: 100%;
height: auto;
margin: 10px;
}