-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
44 lines (39 loc) · 698 Bytes
/
styles.scss
File metadata and controls
44 lines (39 loc) · 698 Bytes
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
/*-- scss:rules --*/
body {
font: normal normal 400;
font-size: 100%;
line-height: 1.5em;
/*also written as... font: normal normal 400 100%/1.5em;*/
font-family: Recursive,Avenir,Verdana,sans-serif;
margin-top: 1em;
margin-left: 1em;
}
p {
position: relative;
/*left: 25%;*/
margin-bottom: 0.7em;
margin-right: 0;
}
code {
font: normal normal;
font-size: 90%;
/*line-height: 1em;*/
font-family: Monaco,Menlo,monospace,sans-serif;
color: #444;
}
p code {
position: absolute;
text-align: right;
right: 0%;
}
h3 {
position: relative;
/*left: 25%;*/
margin-bottom: 0.7em;
margin-right: 0;
}
h3 code {
position: absolute;
text-align: right;
right: 0%;
}