-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (49 loc) · 912 Bytes
/
style.css
File metadata and controls
61 lines (49 loc) · 912 Bytes
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
* {
--orange-strong:#ff6a00;
--orange-fade :#ffe0c4;
--code-bg :#e5e5e5;
}
body{
background-color: white;
color:black;
margin:0;
padding:0px 10px;
font-size: 125% !important;
}
h1{
text-align: center;
padding:5vh 0;
}
.wrapper{
border:2px var(--code-bg) solid;
border-radius: 0.3em;
margin: auto !important;
padding:0 15px;
}
.wrapper-header{
background: var(--code-bg);
width: calc(100%+30px);
margin:0 -15px;
}
.code {
background-color: var(--code-bg);
border-radius: 0.2em;
padding: 0.2em;
}
span.detail{
text-decoration: bold;
color:var(--orange-strong);
}
.detail_mimic{
text-decoration: bold;
color:var(--orange-strong);
}
.col_orange{
color: var(--orange-strong);
}
.bg_orange{
background-color: var(--orange-fade);
}
.bg_orange_strong{
background-color: var(--orange-strong);
}