blob: 352fd7868e74bcb9d34959d4b480782081de3e3e (
plain) (
blame)
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
|
/*
* SUI theme
* Inspired by the great https://github.com/jeroenpardon/sui start page
* Author: @bastienwirtz
*/
body #app.theme-sui {
#bighead .dashboard-title {
padding: 65px 0 0 12px;
h1 {
margin-top: 0;
font-weight: bold;
font-size: 2.2rem;
}
}
.navbar .navbar-item:hover {
background-color: transparent;
}
.card,
.card:hover {
background-color: transparent;
box-shadow: none;
.title {
font-weight: bold;
}
.card-content {
padding: 0;
}
}
}
|