-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.css
executable file
·75 lines (62 loc) · 993 Bytes
/
core.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
/* Some very simple css stuff to make Tao more developer friendly */
body {
margin-top: 30px; /*to avoid the admin menu*/
padding: 10px;
font-family: Tahoma, sans-serif;
}
h1 {
font-size: 18px;
}
#left {
float: left;
width: 10%;
margin-right: 2%;
}
#main {
float: left;
width: 85%;
}
#branding {
margin-bottom: 20px;
}
h1.page-title {
font-size: 20px;
margin-bottom: 5px;
}
.form-submit {
border: 1px solid #ccc;
padding: 3px 10px;
}
.form-submit:hover {
background-color: #eee;
}
.links li {
margin-right: 5px;
}
.links li.active a{
color: #000;
}
.breadcrumb {
font-size: 10px;
margin-bottom: 5px;
}
pre {
border: 1px solid #ccc;
padding: 5px;
background: #eee;
font-family: "Andale Mono", "Courier New", monospace;
font-size: 11px;
color: #333;
margin: 10px 0;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
zoom:1;
display: inline-block;
}