-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
76 lines (68 loc) · 1.23 KB
/
styles.css
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
/* Text */
blockquote {
background-color: #ecf0f1;
padding: 20px;
border-color: #2296f3;
border-radius: 5px;
}
blockquote h3 {
margin-top: 0px;
}
/* Tables */
table {
border-collapse: collapse;
margin-bottom:10px;
}
thead {
border-top: solid #DCDCDC;
border-bottom: solid #DCDCDC;
}
tr.odd {
background-color: #F8F8F8;
}
tr:first-child {
border-top: solid #DCDCDC;
}
tr:last-child {
border-bottom: solid #DCDCDC;
}
.class-buttons {
text-align: center;
}
.btn-slides {
background-color: #2296f3;
color: #fff;
font-weight: bold;
font-size: 16px;
border-radius: 10px; /* Rounded edges */
text-align: center;
text-decoration: none;
box-sizing: border-box;
display: inline-block;
vertical-align: middle;
cursor: pointer;
user-select: none;
padding: .9rem;
line-height: .5;
border-radius: .3rem;
}
.btn-notes {
background-color: #000000;
color: #fff;
font-weight: bold;
font-size: 16px;
border-radius: 10px; /* Rounded edges */
text-align: center;
text-decoration: none;
box-sizing: border-box;
display: inline-block;
vertical-align: middle;
cursor: pointer;
user-select: none;
padding: .9rem;
line-height: .5;
border-radius: .3rem;
}
.sidebar-title {
color: #cbcccc;
}