-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
140 lines (133 loc) · 2.87 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
130
131
132
133
134
135
136
137
138
139
140
/*
Theme Name: GV Microgrants Child Theme
Theme URI: http://rising.globalvoices.org/
Description: Child theme for the generic gv-project-theme for Rising Voices Microgrants.
Version: 0.1
Author: Jer Clarke
Author URI: http://globalvoices.org/
Template: gv-theme
*/
#WHITE-TEXT,
/* .header-container .a11y-dialog-open, WHITE BACKGROUND, KEEP IT GREY */
.header-nav-bar-container .header-nav-bar a,
.header-nav-bar-container .header-nav-bar a:active,
.header-nav-bar-container .header-nav-bar a:hover,
.white-text {
color: #fff;
}
#WHITE-BACKGROUND,
.header-container,
.white-background {
background-color: #fff;
}
#AMAZONIA-GREEN-BACKGROUND,
.header-nav-bar-container,
.amazonia-green-background {
border-width: 0px;
background: none;
background-color: #3F8924; /*lightened forest green*/
border-radius: 0;
}
#AMAZONIA-GREEN-HIGHLIGHT-BORDER,
.header-nav-bar li,
.header-nav-bar-container input,
.amazonia-green-highlight-border {
/* Lightest shade of green from medium-green-gradient*/
border-color: #6AA454;
}
#TEXT-SHADOW-AMAZONIA-GREEN-BACKGROUND,
.header-nav-bar li,
.header-nav-bar a,
.text-shadow-amazonia-green-background {
color: #fff;
text-shadow: 1px 1px 2px #306D1A;
}
#AMAZONIA-GREEN-TEXT,
a,
h3 a,
a,
.screen-title a:hover,
.taxonomy-list a:hover,
.post-date a:hover,
.meta-term-subterms .active-term a,
#comments #respond #commentform a:hover,
#page-navigation a:hover,
.amazonia-green-text {
color: #299B00;
}
#LIGHT-AMAZONIA-GREEN-TEXT,
#page-navigation a,
a:hover,
.edit a,
.post-terms-taxonomy a,
#comments .edit a,
#cancel-comment-reply-link,
.warning a,
.light-amazonia-green-text {
color: #30B600;
}
/*Hide post authors*/
.single .single-credit {
/* Hide credits from top of posts and excerpts
because the post author did not write the
proposals*/
display: none;
}
.single-description {
/* Make single post header full width because
the credit no longer takes up space*/
width: 100%;
}
#post-archive .credit-text,
.widget-gv-monthly-archives {
display: none;
}
/*Hide Creative Commons Messages*/
#footer #license,
.postfooter .license {
display: none;
}
/*Site title sizing + media queries from RV child theme*/
.site-title {
width: 360px;
max-width: 360px;
}
@media
/*only screen BIGGER THAN 1008px {*/
only screen and (min-width: 1008px) {
.header-nav-bar li {
font-size: 18px;
font-size: 1.15rem;
}
}
@media
/*only screen and (max-width: 960px) {*/
only screen and (max-width: 1008px) {
.site-title {
width: 300px;
max-width: 300px;
}
}
/*Anything smaller than 720px*/
@media
only screen and (max-width: 720px) {
.site-title {
width: 180px;
max-width: 180px;
}
}
@media
only screen and (max-width: 552px) {
.site-title {
/* width: 120px;
max-width: 120px;*/
}
}
/*Anything smaller than 480 - iPhone landscape*/
@media
only screen and (max-width: 481px) {
}
/*Anything smaller than 360: iPhone portrait */
@media
only screen and (max-width: 360px) {
}