-
Notifications
You must be signed in to change notification settings - Fork 2
/
custom.scss
120 lines (99 loc) · 2.02 KB
/
custom.scss
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*-- scss:defaults --*/
$h2-font-size: 1.6rem !default;
$headings-font-weight: 500 !default;
$background-color: #f0f0f0 !default;
$page-background-color: #f0f0f0 !default;
$sidebar-background-color: #f0f0f0 !default;
$content-background-image: url('images/rdm-background.jpg') !default;
/*-- scss:rules --*/
h1, h2, h3, h4, h5, h6 {
text-shadow: -1px -1px 0 rgba(0, 0, 0, .3);
}
#metadata-table {
background-color: #ffffff;
font-size: 14px;
}
#raw-table {
background-color: #ffffff;
}
#metadata-table .odd {
background-color: #dddddd;
}
#metadata-table .even {
background-color: #f7f7f7;
}
li::marker {
font-size: 14.5px;
}
.naming-convention-table {
font-size: 14.5px;
/* width: 80%; */
/* margin: 0 auto; */
}
.naming-convention-table .even {
background-color: #dddddd;
}
.naming-convention-table .odd {
background-color: #f7f7f7;
}
.naming-convention-table .header {
background-color: #dddddd;
}
.blockquote {
border-radius: 8px;
}
.documentation-list {
font-size: 14.5px;
border-radius: 20px !important;
}
.yoda-table {
font-size: 14.5px;
}
.yoda-table .even {
background-color: #f7f7f7;
}
.yoda-table .odd {
background-color: #dddddd;
}
#quarto-content {
background-size: cover;
background-image: contain;
padding-left: 20px;
}
#title-block-header {
margin-top: 15px;
}
.sidebar-title {
font-weight: bold;
font-size: 24px;
}
.callout {
background-color: #ffffff;
}
.blockquote {
background: #ffffff;
}
body {
background-color: $page-background-color;
background-image: $content-background-image;
background-size: 120%;
}
#quarto-sidebar {
background-color: rgba(240, 240, 240, 0.7);
margin-top: 18px;
margin-bottom: 70px;
border-radius: 15px;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
#quarto-document-content {
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 15px;
width: 1000px;
background-color: rgba(240, 240, 240, 0.7);
margin-left: 15px;
padding-left: 30px;
padding-right:30px;
}
#quarto-margin-sidebar {
display: none;
}