This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Make images submitted via a Google Form publicly viewable. | |
* | |
* Updated version at https://gist.github.com/bef1b29628be234978f6d286f4e719ba | |
* | |
* INSTRUCTIONS | |
* | |
* 1. Open the response spreadsheet. | |
* 2. Open the script editor (Tools -> Script Editor), paste the content of this | |
* file inside the editor, and save (Ctrl+S or Cmd+S). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_custom_login_logo() | |
{ | |
echo '<style type="text/css"> | |
h1 a { display:none !important; } | |
body { background:#674172 !important;} | |
.login #backtoblog a, .login #nav a {color:white !important;} | |
wp-core-ui .button-primary { | |
background: #674172 !important; | |
color: #FFF; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id="searchthis" action="/search" style="display:inline;" method="get"> | |
<div class="form-group"> | |
<div class="input-group"> | |
<input autocomplete="on" class="form-control" name="q" title="search" placeholder="Search" id="search-query-3" /> | |
<span class="input-group-btn"> | |
<button type="submit" class="btn"><span class="fui-search"></span></button> | |
</span> | |
</div> | |
</div> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item android:state_pressed="true" > | |
<shape> | |
<gradient | |
android:startColor="#009c0c" | |
android:endColor="#9ccfa1" | |
android:angle="270" /> | |
<stroke | |
android:width="4dp" |