-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (105 loc) · 1.64 KB
/
style.css
File metadata and controls
106 lines (105 loc) · 1.64 KB
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
body
{
font-family: Segoe UI, sans-serif;
margin-left:auto;
margin-right: auto;
width:1100px;
}
h1,h2,h3,h4,h5,h6
{
font-family: Segoe UI Light, Segoe WP Light, Segoe UI, Helvetica, sans-serif;
font-weight: lighter;
margin-bottom:0px;
}
h1
{
font-size: 4em;
}
h2
{
font-size: 2.5em;
}
a, a:visited
{
text-decoration: none;
color:#13678b;
}
a:hover
{
color:white;
background: #13678b
}
ul
{
margin:0;
padding:0;
}
li
{
margin:0;
padding:0;
list-style-type:none;
}
.entry ul, .idea ul
{
margin-left:10px;
}
.entry li, .idea li
{
margin-left:10px;
list-style-type:circle;
}
#hometext a { font-size: 2em; margin-left: 5px; margin-right:10px; display: none; color: #41B1E1; font-weight: normal; }
#home:hover
{
background:none;
}
#side
{
float:right;
color: #41b1e1;
margin-left:50px;
}
#side .section
{
margin-top:50px;
margin-bottom: 50px;
padding:0;
}
#side .section ul
{
font-size:2em;
}
#content
{
width:auto;
}
img
{
width: auto !important;
height: auto !important;
max-width: 100%;
border: none;
}
.postdate
{
font-size: 0.8em;
font-weight: bold;
}
.idea h1, .entry h1
{
margin-bottom: 5px;
}
/* min-device-width: 800px instead? */
@media screen and (max-width:900px)
{
body { width:auto; margin:10px; }
#content { width : 100%; }
#side { float:none; width:100%; margin-left:0px; }
#side .section { margin-top:0; margin-right: 30px; }
#side .section ul { font-size:1.2em; padding:0px; margin:5px; }
#side li { display: inline; margin-left:3px; margin-right: 3px; font-weight: normal; }
#home { display: none; }
#hometext a { display: inline; }
h1 { margin-top: -0px;}
}