forked from kangalio/kangalio.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
77 lines (65 loc) · 1.19 KB
/
main.css
File metadata and controls
77 lines (65 loc) · 1.19 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
body {
background-color: #222222;
color: white;
font-family: sans-serif;
font-size: 125%;
}
#content {
margin-left: 20px;
margin-top: 35px;
width: 50em;
line-height: 175%;
}
.heading {
padding-left: 30px;
padding-right: 30px;
padding-top: 10px;
border-left: 20px solid #00FF55;
border-top: 5px solid #00FF55;
font-size: 200%;
cursor: default;
text-shadow: 0 0 30px white;
}
a {
color: #00FF55;
text-decoration: none;
}
a:not(.navbar-item-link):hover {
color: #88FFAA
}
.fancy-link {
text-shadow: 0 0 50px #66FFAA;
transition: text-shadow 0.3s;
}
.fancy-link:hover {
text-shadow: 0 0 40px white;
}
#navbar {
list-style-type: none;
right: 20px;
top: 0;
padding: 0;
font-size: 20px;
float: right;
overflow: hidden;
position: fixed;
}
.navbar-item-link {
display: block;
color: white;
text-decoration: none;
padding: 14px 16px;
}
.navbar-item {
background-color: #151515;
float: left;
}
.current-navbar-item {
background: linear-gradient(to bottom right, #00CC33, #00CCCCCC);
}
.current-navbar-item:hover {
background: linear-gradient(to bottom right, #00FF33, #00EEEEEE);
}
.navbar-item:not(.current-navbar-item):hover {
background-color: #000000;
}