-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhamk-learn.css
More file actions
78 lines (61 loc) · 1.19 KB
/
hamk-learn.css
File metadata and controls
78 lines (61 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
78
/* ==UserStyle==
@name learn.hamk.fi - 24.9.2019 klo 18.47.53
@namespace github.com/liimaa/userstyles
@version 1.0.0
@description 234
@preprocessor less
@author liima
==/UserStyle== */
@-moz-document domain("learn.hamk.fi") {
@bgMain: #1f1f1f;
@bgSec: #727272;
@colorText: #eee;
@colorLink: #f5a3a3;
@colorHeader: #bbbfc4;
@colorHover: pink;
.link {
color: @colorLink;
}
.text {
color: @colorText;
}
.header {
color: @colorHeader;
//box-shadow: 2px 0 5px 0 rgba(0,0,0,0.25);
}
* {
background-color: @bgMain;
border-color: @bgSec;
.miscForces();
.mods();
}
h1, h2, h3, h4, h5, h6 {
.header();
}
a {
.link() !important;
&:hover {
color: @colorHover !important;
}
}
p, span, td {
.text();
}
li {
.text();
a {
.link() !important;
}
}
.mods {
.modtype_assign * {
.link() !important;
}
}
.miscForces {
.branding, .top-bar { background-color: @bgMain !important; }
.page-header-headings h1 { .header() !important; }
td { border-color: @bgSec !important; }
.breadcrumb a { .link() !important; }
}
}