Skip to content

Instantly share code, notes, and snippets.

@shannonpeng
Last active November 26, 2018 22:20
Show Gist options
  • Save shannonpeng/c8e1a3a7b99e8992a3573834eaec9110 to your computer and use it in GitHub Desktop.
Save shannonpeng/c8e1a3a7b99e8992a3573834eaec9110 to your computer and use it in GitHub Desktop.
Firehose Material-ish Theme
/* background */
body {
font-family: 'Karla', sans-serif !important;
background-color: white;
}
/* classes */
.fc-event-container a {
margin: 0.2em;
padding: 0.1em;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
box-shadow: 0px 0px 2px #999999;
}
.fc-event-container a:hover {
transform: scale(1.05);
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
box-shadow: 0px 0px 12px #999999;
cursor: pointer;
}
.fc-unthemed .fc-content, .fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-list-view, .fc-unthemed .fc-popover, .fc-unthemed .fc-row, .fc-unthemed tbody, .fc-unthemed td, .fc-unthemed th, .fc-unthemed thead {
border-color: #d4d4d4;
}
.fc-event .fc-bg {
background: transparent;
}
.fc-content {
color: white;
opacity: 0.8;
}
.fc-time {
opacity: 0.5;
}
.fc-content .fc-title {
display: block;
font-size: 0.75em;
}
.fc-content .fc-title::first-line {
font-size: 1.25em;
}
/* right content */
#right-div, #selector-div, #eval-table-div {
font-family: 'Karla', sans-serif;
text-transform: lowercase;
}
#info-div p, #info-div p * {
color: #404040;
font-family: 'Karla', sans-serif;
}
/* text boxes */
input {
padding: 0.5em;
background-color: rgba(250,250,250,0.5);
border: none;
}
input:focus {
outline: none;
}
/* buttons */
.btn {
margin: 0.25em;
box-shadow: 0px 0px 2px #808080;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
.btn:hover {
transform: scale(1.02);
box-shadow: 0px 0px 8px #808080;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
cursor: pointer;
}
.btn:active, .btn:focus {
outline: none;
}
.btn.btn-primary {
color: #404040;
background: #eeeeee;
border: 0px;
margin: 0.5em;
text-transform: lowercase;
}
.btn.btn-primary:hover {
border: 0px;
}
.btn.btn-primary.active {
background: #3d95da;
color: white;
box-shadow: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment