-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
executable file
·100 lines (89 loc) · 2 KB
/
style.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
94
95
96
97
98
99
p.caption {
color: #777;
margin-top: 10px;
}
p code {
white-space: inherit;
}
pre {
word-break: normal;
word-wrap: normal;
}
pre code {
white-space: inherit;
}
.book .book-body .page-wrapper .page-inner section.normal a {
max-width: 90% !important;
margin-right: 10px;
font-size: 1.3em;
text-align: justify !important;
}
.book-summary {
font-size: 1.4em !important;
}
.yourturn {
padding: 1em;
margin: 1em 0;
padding-left: 100px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
background-color: #FFFFFF;
border: dashed 5px #9678D3;
background-image: url("figures/yourturn_c.png")
}
.keyidea {
padding: 1em;
margin: 1em 0;
padding-left: 100px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
background-color: #FFFFFF;
border: dashed 5px #3DB5E6;
background-image: url("figures/list_c.png")
}
.codingex{
padding: 1em;
margin: 1em 0;
padding-left: 100px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
background-color: #FFFFFF;
border: dashed 5px #FFD200;
background-image: url("figures/code_c.png")
}
.outsidethebox{
padding: 1em;
margin: 1em 0;
padding-left: 100px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
background-color: #FFFFFF;
border: dashed 5px #005EB8;
background-image: url("figures/box_c.png")
}
.pitfall{
padding: 1em;
margin: 1em 0;
padding-left: 100px;
background-size: 70px;
background-repeat: no-repeat;
background-position: 15px center;
min-height: 120px;
background-color: #FFFFFF;
border: dashed 5px #00BCB5;
background-image: url("figures/important_c.png")
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}