-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
56 lines (53 loc) · 966 Bytes
/
main.css
File metadata and controls
56 lines (53 loc) · 966 Bytes
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
:root {
--gradient-1: rgba(255, 255, 255, 0.158);
--gradient-2: rgba(3, 196, 255, 0.3);
--gradient: linear-gradient(var(--gradient-1), var(--gradient-2), 45deg);
}
* {
margin:0px;
line-height: 1.4;
}
#content-left {
margin: 0 340px 0 0;
}
.box {
background:#222;
border:1px solid #bcd;
padding:.65em;
}
html {
color:white;
background:url(./background.gif) /*no-repeat center center fixed*/;
/*background-size: cover;*/
font:normal 100% sans-serif;
}
#navbar {
min-height: 1.4em !important;
background: #000;
border-bottom: var(--gradient);
}
h2 {
font-size: 1.5em;
margin-bottom: .5em;
border-bottom: 1px solid #FFF;
}
#content {
padding:1em;
}
#content-right {
float:left;
width:300px;
margin-left:-300px;
}
#content-left-wrapper {
float:left;
width: 100%;
}
a {
color:white;
}
#post {
background: #111;
padding: .35em;
border: 1px solid #bcd;
}