-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (82 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (82 loc) · 1.44 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
:root {
font-family: 'Roboto', sans-serif;
--red: rgb(119, 37, 30);
--gray: #707176;
}
.gray {
color: var(--gray);
}
h1 {
margin-bottom: 0px;
margin-left: 1rem;
}
h1,
h2 {
text-transform: uppercase;
}
.yellow {
margin-bottom: 0px;
background-color: var(--red);
color: white;
padding: 0.25rem;
}
.grey {
margin-top: 0px;
margin-bottom: 0px;
background-color: var(--gray);
color: white;
padding: 0.25rem;
}
.container {
margin-top: 0px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.tab2 {
margin-left: 0px !important;
display: grid;
grid-template-columns: 1fr 1fr;
}
.left-grid {
margin-left: 0px !important;
grid-column-start: 1;
grid-column-end: 1;
margin: 0.5rem;
}
.right-grid {
margin-left: 0px !important;
grid-column-start: 2;
grid-column-end: 2;
margin-bottom: 0.5rem;
}
.container div {
margin: 1rem;
}
.col *:first-child {
margin-top: 0px;
}
.codes {
margin: 1rem;
}
#ros-logo {
position: absolute;
right: 2rem;
top: 1.33rem;
height: 2rem;
fill: var(--gray);
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
}
.icon-link {
color: var(--red);
text-decoration: none;
position: relative;
left: 0.5rem;
}
.icon-link svg {
width: 1rem;
height: 1rem;
fill: currentColor;
}