-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (77 loc) · 1.41 KB
/
style.css
File metadata and controls
102 lines (77 loc) · 1.41 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* General */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url("pics/wallpaper.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
font-family: Roboto, sans-serif;
color: white;
}
/* End General */
/* Header */
header {
height: 45px;
}
header hr {
color:white;
}
.icons {
height: 40px;
}
.left-spacing {
margin-left: 30px;
}
.inlinelmnts {
display: inline;
}
.sidebyside {
display: inline-block;
}
#unreadcounter {
background-color: #890402;
border-radius: 50%;
width: 20px;
height: 20px;
text-align: center;
}
/* End Header */
/* Aside - left navbar */
aside {
width:215px;
height: 500px;
}
.transparent-bg {
background-color: rgba(33, 32, 32, 0.66);
}
.catborder {
border: 1px solid rgba(84, 83, 83, 0.66);
}
/* End Aside - left navbar */
/* Main message display */
main {
width: 70%;
height: 502px;
margin-top: 1px;
}
.important {
color: yellow;
}
.unreadmailobject {
font-weight: 700;
}
.readinbox {
background-color: rgba(69, 68, 68, 0.66);
}
.unreadinbox {
background-color: rgba(117, 106, 106, 0.66);
border: 1px solid rgba(165, 165, 165, 0.66);
}
/* End Main message display */
footer {
text-align: center;
}