-
Notifications
You must be signed in to change notification settings - Fork 1
/
Studium.darklight.user.css
94 lines (78 loc) · 1.73 KB
/
Studium.darklight.user.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
88
89
90
91
92
93
94
/* ==UserStyle==
@name Light dark theme for Studium
@namespace github.com/UNICT-DMI/UniCTUserStyles
@version 1.0.0
@description Userstyle for Studium
@author makapx (https://github.com/makapx)
==/UserStyle== */
@-moz-document domain("studium.unict.it"),
domain("studiumarchive.unict.it") {
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=default");
:root {
color-scheme: dark;
--theme: #192021;
--primary: #1b2f73;
--accent: #153a7d;
--white: #fff;
}
body,
body.tool_background {
font-family: "Poppins", serif;
background: var(--theme);
}
/* Typography */
h3.tablet_title {
color: var(--accent);
}
#content {
font-size: 1.1rem;
border-radius: 4px;
}
/* Main header */
#header2 {
background: var(--primary);
}
#header2redborder {
background: var(--accent);
}
#header2 #dokeostabs li,
#header2 #logout a {
display: flex;
align-items: center;
justify-content: center;
border: none;
}
#header2 #dokeostabs li#current {
background-color: var(--accent);
}
#header2 #dokeostabs li#current span {
color: var(--white);
font-weight: bold;
}
#header2 #logout a {
background-color: var(--accent);
margin-top: 0;
padding-bottom: 8px;
border-radius: 0;
}
/* Course page header */
#header3,
#header3 div.headerinner {
background: var(--theme);
}
#header3 #global_course_name {
padding-top: 1.2rem;
color: var(--white);
font-weight: 800;
}
#main .actions.rel {
border-radius: 4px;
}
/* Tabs */
.homepage_button.homepage_catalogue {
display: none;
}
#menu div:not(.tablet_title) a {
font-weight: 600;
}
}