-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
93 lines (76 loc) · 1.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/**********************/
/** Overrided Styles **/
/**********************/
.reveal section {
color: #606060;
}
.reveal section img {
background: none;
border: none;
box-shadow: none;
}
.reveal section h1,
.reveal section h2,
.reveal section h3,
.reveal section h4,
.reveal section h5,
.reveal section h6 {
color: #79589F;
text-transform: none;
}
.reveal section ul pre {
width: 100%;
}
/*******************/
/** Custom Styles **/
/*******************/
.reveal section .box-group {
display: flex;
align-items: center;
}
.reveal section .box-group.vertical {
flex-direction: column;
}
.reveal section .box-group>div {
margin: 15px;
}
.reveal section .box-group.small>div {
margin: 0px;
font-size: 50%;
}
.reveal section .box {
border: 3px solid;
padding: 20px;
vertical-align: middle;
border-radius: 6px;
}
.reveal section .small .box {
padding: 3px;
}
.reveal section .box.green {
border-color: green;
color: green;
background-color: #c1ffc1;
}
.reveal section .box.blue {
border-color: #1d3aba;
color: #1d3aba;
background-color: #96a9ff;
}
.reveal section .box.orange {
border-color: orangered;
color: orangered;
background-color: #ffcfa5;
}
.reveal section .box.purple {
border-color: purple;
color: purple;
background-color: #fbb7ff;
}
.reveal section .half-width {
width: 50%;
float: left;
}
.clearfix {
clear: both;
}