-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjohn_stan.css
106 lines (51 loc) · 1.54 KB
/
john_stan.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
100
101
102
103
104
105
106
/* .note { margin-top: 1em; margin-bottom : 1em; color:#228B22 ; background-color: #F1FFF1 ; font-style: italic ; font-weight: 500} */
/* .important { margin-top: 1em; margin-bottom : 1em; color:#228B22 ; background-color: #F1FFF1 ; font-style: italic ; font-weight: 500;} */
/* .ragred { color:#A00000 ; background-color: #FFF3F0 ; font-weight: bold ; } */
/* .raggreen { color:#228B22 ; background-color: #F1FFF1 ; font-style: italic ; font-weight: 500 ;} */
/* .ragamber {
margin-top: 1em; margin-bottom : 1em; color: yellow; border-left:solid 2px;
padding:2px;
border-radius:5px;
} */
body { counter-reset: H1; } /* Create the counter for H1 */
h1:before {
content: counter(H1) ". "; /* Print the H1 number */
counter-increment: H1; /* Add 1 to next H1 */
}
h1 { counter-reset: H2; }
h2:before {
content: counter(H1) "." counter(H2) " ";
counter-increment: H2;
}
h2 { counter-reset: H3; }
h3:before {
content: counter(H1) "." counter(H2) "." counter(H3) " ";
counter-increment:H3;
}
.ragred {
border:solid red 2px;
padding:2px;
border-radius:5px;
color: black;
}
.raggreen {
margin-top: 1em; margin-bottom : 1em; color: green; border-left:dotted 2px;
padding:2px;
border-radius:5px;
}
.note {
margin-top: 1em; margin-bottom : 1em; color: green; border-left:dotted 2px;
padding:2px;
border-radius:5px;
}
/* .ragamber { background-color: #FFFFE0 ;} */
/* body {
background-image:url('shared/background.png');
}
*/
.important {
border:solid red 2px;
padding:2px;
border-radius:5px;
color: black;
}