-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (67 loc) · 1.27 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
/*
Theme Name: sample_theme
Theme URI: google.com
Author: yoel
Author URI: walla.co.il
Description: this is a simple example theme i made.
Version: 1.0
*/
.bg-primary ul li a,.bg-primary a
{
color:white !important;
text-align: center;
}
.bg-primary ul li a:hover,.bg-primary ul li a.current-menu-item
{
color:#337AB7 !important;
}
.test_sidebar
{
font-weight:bold;
}
/*nav*/
.nav ul li.menu-item-has-children:hover > ul ,.page_item_has_children:hover > ul
{
display: block;
}
.nav ul li ul,.children
{
display: none;
width: auto;
position: absolute;
padding: 10px 10px;
background: #469CE6;
border-radius: 0 0 5px 5px;
z-index: 999;
}
@media only screen and (max-width:420px)and (min-width: 200px)
{
.nav ul li ul,.children
{
display: block;
text-align: center;
position: static;
}
}
/*core*/
.yclear
{
clear:both;
}
/** Pagination */
.pagination {
background:#E7E6E5;
background:rgba(255,255,255,0.35);
padding:7px 10px 5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
}
.pagination .page-numbers {
padding:3px 6px;
font-size:15px;
font-weight:bold;
}
.pagination .current {
color:#000;
}