-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
75 lines (64 loc) · 1.28 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
/* text decoration and formating */
/* TODO: */
/* https://www.w3schools.com/css/css_text.asp */
.TODO {
text-decoration-line: underline, overline, line-through;
text-decoration-color: red;
text-decoration-style: solid, wavy, dotted, dashed, double;
text-transform: capitalize;
text-transform: lowercase;
text-transform: uppercase;
text-transform: none;
font-family: cursive;
font-family: fantasy;
font-family: monospace;
font-family: sans-serif;
font-family: serif;
font-variant: small-caps;
font-variant: normal;
}
@font-face {
font-family: "meine Beispielschrift";
src: url("examplefont.eot");
}
/* text size, weight and line hight */
.todo2 {
font-size: 1em;
font-weight: normal;
font-weight: bold;
line-height: normal;
line-height: 1.2em;
}
/* text position*/
.todo3 {
text-indent: 2em;
text-indent: -2em;
text-align: left;
text-align: center;
text-align: right;
text-align: justify;
}
/* code blocks*/
.cb {
background: rgb(198, 198, 198);
background-color: rgb(198, 198, 198);
padding: 2px 5px;
}
/* colors */
/*opacities*/
.o-50 {
opacity: 0.5;
}
/* bg-colors */
/* element possition */
.todo4 {
vertical-align: middle;
margin: 0 auto;
}
/* floats */
.todo5 {
clear: both;
float: left;
float: right;
}
/* borders */