-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (124 loc) · 2.04 KB
/
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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
** HTML elements
*/
a, a:link, a:active {
color: #930;
}
a:visited {
color: #630;
}
body {
padding: 5em 0 0 3em; /* LTR */
background-image: url(background.png);
background-repeat: repeat-x;
font-family: trebuchet ms, tahoma, verdana, arial, helvetica;
border-top: 10px solid gray;
}
ul {
list-style-type: disc;
}
/*
** Page layout blocks / IDs
*/
#main {
width: 500px;
}
#sidebar-left {
border-right: 1px solid gray; /* LTR */
}
#sidebar-right {
border-left: 1px solid gray; /* LTR */
}
/*
** Common declarations for child classes of node, comment, block, box etc
*/
#header .title {
font-size: 2em;
font-weight: bold;
padding-top: .75em;
}
#header .title a,
#header .title a:link,
#header .title a:visited,
#header .title a:active {
text-decoration: none;
color: #aaa;
}
#header .title a:hover {
color: #930;
}
#header .site-slogan {
margin-top: -0.1em;
font-size: 0.8em;
}
#subnavlist {
font-size: 0.8em;
}
ul.links li {
border-left: 1px solid #000; /* LTR */
}
ul.links li.first {
border-left: none; /* LTR */
}
.node .title {
font-size: 1.2em;
}
.node .title a,
.node .title a:link,
.node .title a:active,
.node .title a:visited {
text-decoration: none;
font-weight: normal;
}
.node .title a:hover {
text-decoration: underline;
}
div.links {
margin: 1em 0 3em 0;
text-align: right; /* LTR */
}
.comment .content,
.sidebar .block .content,
.menu {
font-size: 0.9em;
}
.sidebar .block {
padding-bottom: 1em;
}
.sidebar .block .title {
font-size: 1em;
}
/*
** Module specific styles
*/
.item-list ul li {
list-style: square;
}
/*
** Administration page styles
*/
div.admin-panel .description {
color: #999;
}
div.admin-panel .body {
background: #eee;
}
div.admin-panel h3 {
background-color: #999;
color: #fff;
padding: 5px 8px 5px;
margin: 0;
}
/*
* 2015 conference page
*/
#node-531.node-teaser {
background-color: #FFF2D0;
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right 20px;
padding-top: 5px;
margin-top: 20px;
border-bottom: none;
}