-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
130 lines (101 loc) · 2.07 KB
/
styles.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
121
122
123
124
125
126
127
128
129
130
/*-- scss:defaults --*/
$sg-blue: #0065bd;
/*-- scss:rules --*/
#title-block-header {
color: $sg-blue;
border-bottom-style: solid;
}
#title-block-header img {
float: left;
padding-right: 1.2rem;
min-height: 32px;
max-height: 40px;
}
#title-block-header h1 {
position: relative;
font-size: calc(1rem + 1.14vw);
}
a {
color: $sg-blue;
}
.sidebar nav[role=doc-toc] ul>li>a.active {
border-left: 1px solid $sg-blue;
color: $sg-blue !important;
}
.sidebar nav[role=doc-toc] ul>li>ul>li>a.active {
border-left: 1px solid $sg-blue;
color: $sg-blue !important;
}
.btn {
font-size: 18px !important;
margin: .5rem;
}
body {
margin: 1rem !important;
}
body, input, .gt_table {
font-family: "Roboto", Arial;
font-size: 18px !important;
}
h3 {
border-bottom: 1px solid #dee2e6;
padding-bottom: .5rem;
padding-top: .5rem;
margin-bottom: 1.2rem;
font-size: calc(1.2rem + 0.3vw);
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
font-weight: 500 !important;
}
h4.criteria {
background-color: $sg-blue;
color: #ffffff;
padding: .5rem;
border-radius: 5px;
}
.form-group {
width: auto !important;
}
.metadata{
padding: 0 .25rem 1rem .25rem;
}
/* Hide label for form input to avoid visual repetition */
.hide-label label {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/* Style the buttons that are used to open and close the accordion panel */
details {
margin: .25rem 0;
width: 100%;
text-align: left;
}
details>summary {
color: #0064bd;
}
summary {
padding: .1rem;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.details_summary:hover {
background-color: #d9effc;
}
/* Style the details panel. Note: hidden by default */
.panel {
background-color: white;
display: none;
overflow: hidden;
}
.details_text {
border-left: 3px solid #b3b3b3;
padding: .2rem;
padding-left: .7rem;
box-sizing: border-box;
margin-top: .5rem;
}