├── README.md ├── footer.php ├── templates └── content-page.php ├── page.php ├── index.php ├── header.php └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # CAHNRSWP-Theme-WEPL 2 | CAHNRS Western Extension Program Leaders Theme development 3 | -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /templates/content-page.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 | 6 |
7 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |

Main Area

5 | 6 |

7 |

Posted on

8 |

9 |
10 |

11 |
12 |
13 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?php wp_title( '|', true, 'right' ); ?> 7 | 8 | 9 | 10 | 11 |
12 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | /* 2 | Theme Name: CAHNRS-Theme-WEPL 3 | Theme URI: //cahnrs.wsu.edu/communications/ 4 | Description: Western Extension Program Leaders Theme to be housed on extension.wsu.edu 5 | Version: 0.1.0 6 | Author: Don Pierce 7 | Author URI: //cahnrs.wsu.edu/communications// 8 | */ 9 | 10 | #wrapper { 11 | background-color: white; 12 | display: block; width:90%; 13 | margin:0px auto; } 14 | 15 | #header { border: 2px #a2a2a2 solid; } 16 | #content { width: 99%; float: left; } 17 | #footer { border: 2px #a2a2a2 solid; } 18 | .title { font-size: 11pt; font-family: 'Open Sans','Lucida Sans','Lucida Grande','Lucida Sans Unicode',sans-serif; font-weight: bold; } 19 | 20 | /* =Global 21 | ----------------------------------------------- */ 22 | 23 | body, 24 | button, 25 | input, 26 | select, 27 | textarea { 28 | color: #404040; 29 | font-family: 'Open Sans','Lucida Sans','Lucida Grande','Lucida Sans Unicode',sans-serif; 30 | font-size: 13px; 31 | font-size: 1.4rem; 32 | line-height: 1.5; 33 | } 34 | 35 | body { 36 | background: #5e6a71; 37 | } 38 | 39 | 40 | /* Headings */ 41 | h1,h2,h3,h4,h5,h6 { 42 | clear: both; 43 | } 44 | hr { 45 | background-color: #ccc; 46 | border: 0; 47 | height: 1px; 48 | margin-bottom: 1.5em; 49 | } 50 | 51 | /* Text elements */ 52 | p { 53 | margin-bottom: 1.5em; 54 | } 55 | ul, ol { 56 | margin: 0 0 1.5em 3em; 57 | } 58 | ul { 59 | list-style: disc; 60 | } 61 | ol { 62 | list-style: decimal; 63 | } 64 | ul ul, ol ol, ul ol, ol ul { 65 | margin-bottom: 0; 66 | margin-left: 1.5em; 67 | } 68 | dt { 69 | font-weight: bold; 70 | } 71 | dd { 72 | margin: 0 1.5em 1.5em; 73 | } 74 | b, strong { 75 | font-weight: bold; 76 | } 77 | dfn, cite, em, i { 78 | font-style: italic; 79 | } 80 | blockquote { 81 | margin: 0 1.5em; 82 | } 83 | address { 84 | margin: 0 0 1.5em; 85 | } 86 | pre { 87 | background: #eee; 88 | font-family: "Courier 10 Pitch", Courier, monospace; 89 | font-size: 15px; 90 | font-size: 1.5rem; 91 | line-height: 1.6; 92 | margin-bottom: 1.6em; 93 | padding: 1.6em; 94 | overflow: auto; 95 | max-width: 100%; 96 | } 97 | code, kbd, tt, var { 98 | font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; 99 | } 100 | abbr, acronym { 101 | border-bottom: 1px dotted #666; 102 | cursor: help; 103 | } 104 | mark, ins { 105 | background: #fff9c0; 106 | text-decoration: none; 107 | } 108 | sup, 109 | sub { 110 | font-size: 75%; 111 | height: 0; 112 | line-height: 0; 113 | position: relative; 114 | vertical-align: baseline; 115 | } 116 | sup { 117 | bottom: 1ex; 118 | } 119 | sub { 120 | top: .5ex; 121 | } 122 | small { 123 | font-size: 75%; 124 | } 125 | big { 126 | font-size: 125%; 127 | } 128 | figure { 129 | margin: 0; 130 | } 131 | table { 132 | margin: 0 0 1.5em; 133 | width: 100%; 134 | } 135 | th { 136 | font-weight: bold; 137 | } 138 | button, 139 | input, 140 | select, 141 | textarea { 142 | font-size: 100%; /* Corrects font size not being inherited in all browsers */ 143 | margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */ 144 | vertical-align: baseline; /* Improves appearance and consistency in all browsers */ 145 | *vertical-align: middle; /* Improves appearance and consistency in all browsers */ 146 | } 147 | button, 148 | input { 149 | line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */ 150 | *overflow: visible; /* Corrects inner spacing displayed oddly in IE6/7 */ 151 | } 152 | button, 153 | html input[type="button"], 154 | input[type="reset"], 155 | input[type="submit"] { 156 | border: 1px solid #ccc; 157 | border-color: #ccc #ccc #bbb #ccc; 158 | border-radius: 3px; 159 | background: #e6e6e6; 160 | -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 15px 17px rgba(255,255,255,0.5), inset 0 -5px 12px rgba(0,0,0,0.05); 161 | -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 15px 17px rgba(255,255,255,0.5), inset 0 -5px 12px rgba(0,0,0,0.05); 162 | box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 15px 17px rgba(255,255,255,0.5), inset 0 -5px 12px rgba(0,0,0,0.05); 163 | color: rgba(0,0,0,.8); 164 | cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */ 165 | -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */ 166 | font-size: 12px; 167 | font-size: 1.4rem; 168 | line-height: 1; 169 | padding: 1.12em 1.5em 1em; 170 | text-shadow: 0 1px 0 rgba(255,255,255,.8); 171 | } 172 | button:hover, 173 | html input[type="button"]:hover, 174 | input[type="reset"]:hover, 175 | input[type="submit"]:hover { 176 | border-color: #ccc #bbb #aaa #bbb; 177 | -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 15px 17px rgba(255,255,255,0.8), inset 0 -5px 12px rgba(0,0,0,0.02); 178 | -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 15px 17px rgba(255,255,255,0.8), inset 0 -5px 12px rgba(0,0,0,0.02); 179 | box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), inset 0 15px 17px rgba(255,255,255,0.8), inset 0 -5px 12px rgba(0,0,0,0.02); 180 | } 181 | button:focus, 182 | html input[type="button"]:focus, 183 | input[type="reset"]:focus, 184 | input[type="submit"]:focus, 185 | button:active, 186 | html input[type="button"]:active, 187 | input[type="reset"]:active, 188 | input[type="submit"]:active { 189 | border-color: #aaa #bbb #bbb #bbb; 190 | -webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5), inset 0 2px 5px rgba(0,0,0,0.15); 191 | -moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5), inset 0 2px 5px rgba(0,0,0,0.15); 192 | box-shadow: inset 0 -1px 0 rgba(255,255,255,0.5), inset 0 2px 5px rgba(0,0,0,0.15); 193 | } 194 | input[type="checkbox"], 195 | input[type="radio"] { 196 | box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */ 197 | padding: 0; /* Addresses excess padding in IE8/9 */ 198 | } 199 | input[type="search"] { 200 | -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */ 201 | -moz-box-sizing: content-box; 202 | -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */ 203 | box-sizing: content-box; 204 | } 205 | input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */ 206 | -webkit-appearance: none; 207 | } 208 | button::-moz-focus-inner, 209 | input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */ 210 | border: 0; 211 | padding: 0; 212 | } 213 | input[type=text], 214 | input[type=email], 215 | textarea { 216 | color: #666; 217 | border: 1px solid #ccc; 218 | border-radius: 3px; 219 | } 220 | input[type=text]:focus, 221 | input[type=email]:focus, 222 | textarea:focus { 223 | color: #111; 224 | } 225 | input[type=text], 226 | input[type=email] { 227 | padding: 3px; 228 | } 229 | textarea { 230 | overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */ 231 | padding-left: 3px; 232 | vertical-align: top; /* Improves readability and alignment in all browsers */ 233 | width: 98%; 234 | } 235 | 236 | /* Links */ 237 | a { 238 | text-decoration: none; 239 | color:#981e32; 240 | } 241 | a:visited { 242 | color: #981e32; 243 | } 244 | a:hover, 245 | a:focus, 246 | a:active { 247 | color: #981e32; 248 | } 249 | 250 | /* Alignment */ 251 | .centered { 252 | display: block; 253 | margin-left: auto; 254 | margin-right: auto; 255 | } 256 | 257 | .alignright { 258 | float: right; 259 | margin-left: 15px; 260 | } 261 | 262 | .alignleft { 263 | float: left; 264 | margin-right: 15px; 265 | } 266 | 267 | 268 | /* Text meant only for screen readers */ 269 | .assistive-text { 270 | clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ 271 | clip: rect(1px, 1px, 1px, 1px); 272 | position: absolute !important; 273 | } 274 | 275 | --------------------------------------------------------------------------------