-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.css
More file actions
79 lines (59 loc) · 1.19 KB
/
application.css
File metadata and controls
79 lines (59 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
79
/* This file is part of Flus Browser */
/* SPDX-License-Identifier: AGPL-3.0-or-later */
@import "npm:@flus/design/src/stylesheets/application.css";
body {
font-size: 100%;
}
.popup {
width: 480px;
max-width: 100%;
height: 600px;
min-height: 100vh;
overflow: auto;
}
.sidebar {
height: 100vh;
}
.screen {
display: flex;
height: 100%;
flex-direction: column;
justify-content: stretch;
}
.screen__header {
height: 4.2rem;
}
.screen__header a {
color: currentcolor;
}
.screen__logo {
display: inline-block;
padding: var(--space-smaller);
}
.screen__body {
padding: var(--space-medium);
flex: 1;
background-color: var(--color-background);
}
.screen__body--menu {
color: var(--color-pampas);
background-color: var(--color-gable);
}
.notification {
overflow: hidden;
position: absolute;
top: var(--space-medium);
right: var(--space-small);
left: var(--space-small);
box-shadow: 1px 2px 3px 0 var(--color-box-shadow);
}
.flow > hr {
margin-top: 1.5rem;
margin-bottom: 1.5rem;
}
.list--separated > * + * {
border-top: 1px solid var(--color-grey-line);
}
textarea {
min-height: 6.5rem;
}