-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (90 loc) · 1.9 KB
/
style.css
File metadata and controls
106 lines (90 loc) · 1.9 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* Window and main container */
window {
opacity: 0.97;
}
/* Combo boxes */
.combo box {
margin-right: 8px;
}
.combo:focus {
outline: none;
box-shadow: none;
}
/* Notebook structure */
notebook {
background: transparent;
border-radius: 12px;
border: 1px solid #d1d1d1;
}
/* Header and tabs container */
window > box > notebook > header {
background: transparent;
}
window > box > notebook > header > tabs {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
background: #f2f2f2;
padding-left: 12px;
font-weight: 600;
padding-top: 15px;
border-bottom: 1px solid #c5c5c5;
}
/* Tab states */
notebook > header > tabs > tab:checked {
background-color: transparent;
}
notebook > header > tabs > tab:not(:checked) {
background-color: transparent;
}
/* Content area */
notebook > stack {
padding: 20px;
background-color: transparent;
font-weight: bold;
border-radius: 6px;
}
notebook > stack > * {
border-radius: 8px;
}
notebook > stack > box {
border-radius: 12px;
padding: 16px;
background-color: rgba(255, 255, 255, 0.02);
}
/* Frame styling */
window > box > notebook > frame {
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
border-radius: 12px;
}
.monitor-frame {
border: none;
box-shadow: none;
background: transparent;
border-radius: 12px;
}
GtkFrame, GtkNotebook {
border: none;
box-shadow: none;
}
/* Pill buttons */
.tiny-pill {
background-color: #4a90e2;
border-radius: 8px;
border: none;
padding: 1px 10px;
margin: 0;
min-height: 16px;
}
tab:not(:checked) .tiny-pill {
background-color: #235085;
}
/* Pill text - merged both label selectors */
.tiny-pill > label,
notebook > header > tabs > tab > box > frame.tiny-pill > label {
color: white;
text-transform: uppercase;
font-size: 10px;
font-weight: bold;
margin: 0;
padding: 0 3px;
}