-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
114 lines (98 loc) · 1.83 KB
/
index.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
@import url(http://fonts.googleapis.com/css?family=Ultra);
header h1 {
font-family: 'Ultra', serif;
color: blue;
}
nav {
display: block;
margin-bottom: 10px;
}
nav ul {
list-style: none;
font-size: 14px;
}
nav ul li {
display: inline;
}
nav ul li a {
display: block;
float: left;
padding: 3px 6px;
color: #575c7d;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
background: #deff90;
color: #485e0f;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 3px 6px;
margin: 0;
text-decoration: none;
}
div#core {
display: block;
clear: both;
margin-bottom: 20px;
}
section#left {
width: 550px;
float: left;
margin: 0 15px;
}
section#right {
float: left;
width: 300px;
}
/* clearfix */
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
/* Search inputs */
input[type="search"] {
background: #fff url(images/search.png) no-repeat 10px center;
padding-left: 25px;
-webkit-appearance: none;
}
input[type="search"]::-webkit-search-results-button {
-webkit-appearance: none;
}
input {
border-radius: 20px;
}
.searchform input[type="search"] {
padding-right: 0;
max-width: 200px;
}
.searchform input[type="submit"] {
padding: 10px 12px;
float: right;
}
.widget {
border-top: 1px solid rgba(255, 255, 255, 0.6);
border-bottom: 1px solid #ccc;
padding: 30px 0;
}
.widget:first-child {
border-top: none;
padding-top: 0;
}
.widget:last-child {
border-bottom: none;
}