-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcustom.scss
56 lines (45 loc) · 1001 Bytes
/
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
/*-- scss:defaults --*/
// fonts
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400;1,700&display=swap');
// font family
$font-family-sans-serif: 'Ubuntu', Arial, sans-serif !default;
$presentation-font-size-root: 36px;
// colours
$code-block-bg: #fafafa;
$link-color: #1A936F;
$code-color: #1A936F !default;
/*-- scss:rules --*/
.btn-webr {
background-color: $code-block-bg !important;
border-color: $link-color;
border-width: 3px;
border-radius: 15px !important;
padding: 10px;
font-family: $font-family-sans-serif;
margin-bottom: 10px;
font-size: 20px;
cursor:pointer;
}
.reveal .slides {
padding: 30px;
width: 80% !important;
}
.reveal .slide-menu-button {
left: 5px;
top: 15px;
padding-left: 10px;
color: #baded3;
}
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #1A936F;
height: 2%;
}
h1 {
padding-bottom: 30px;
padding-top: 60px;
}
h2 {
padding-bottom: 35px;
padding-top: 20px;
}