forked from wayneyaoo/alfred-cheat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_style.css
61 lines (47 loc) · 1.03 KB
/
my_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
html { font-size: 100%; overflow-y: scroll; }
body {
color:#444;
font-family:Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
font-size:12px;
line-height:1.4em;
padding:0.8em;
background:#fefefe;
height: auto;
}
* { box-sizing: border-box;}
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
height: 100%;
}
td {
vertical-align: top;
text-align: left;
max-width:80em ;
word-wrap:break-word;
}
/* settings for the title */
td.title_cell {
width: 100%;
background-color: #ccc;
font-weight:bold;
padding: 1em 0.4em;
font-size:2.5em;
color:#111;
}
/* general settings for columns */
td.column1 { width: 50%; padding: 7px; background-color: #efefef;}
td.column2 { width: 50%; padding: 7px; background-color: #f8f8f8;}
/* settings for section titles */
.section {
font-weight:bold;
padding: 0.8em 0.2em;
font-size:1.7em;
color:#111;
line-height:0em;
}
/* settings for comments */
.comment{font-size:1em; font-weight:normal;}
/* settings for commands */
.command{font-size:1em; font-weight:bold; }