-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathapp.css
More file actions
77 lines (63 loc) · 1.62 KB
/
app.css
File metadata and controls
77 lines (63 loc) · 1.62 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
/**
* @license
* Copyright 2019-2020 CERN and copyright holders of ALICE O2.
* See http://alice-o2.web.cern.ch/copyright for details of the copyright holders.
* All rights not expressly granted are reserved.
*
* This software is distributed under the terms of the GNU General Public
* License v3 (GPL Version 3), copied verbatim in the file "COPYING".
*
* In applying this license CERN does not waive the privileges and immunities
* granted to it by virtue of its status as an Intergovernmental Organization
* or submit itself to any jurisdiction.
*/
:root {
--color-transparent: rgba(0,0,0,0)
}
.bg-transparent {
background-color: var(--color-transparent);
}
.justify-end {
justify-content: flex-end;
}
.self-center {
align-self: center;
}
.ml1 { margin-left: var(--space-xs); }
.ml2 { margin-left: var(--space-s); }
.ml3 { margin-left: var(--space-m); }
.ml4 { margin-left: var(--space-l); }
.ml5 { margin-left: var(--space-xl)}
.mb2 { margin-bottom: var(--space-s)}
.no-border {
border: 0;
}
.bra2 {
border: 2px solid black;
}
.brb2 {
border-bottom: 2px solid black;
}
.scale12 {
transform: scale(1.2);
}
.scale15 {
transform: scale(1.5);
}
.scale25 {
transform: scale(2.5);
}
.menu-item-static {
/* This class is the same as menu-item from aliceo2 css framework but can be used wihouth hover and active actions*/
text-decoration: none;
height: 2em;
line-height: 2em;
padding-left: 1em;
padding-right: 1em;
color: var(--color-gray-darker);
font-weight: 100;
margin: 0.25em;
border-radius: 0.25em;
display: block;
user-select: none;
}