Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| .gradient { | |
| background: linear-gradient(to bottom, white, #dbdbdb); | |
| } | |
| .everware-content { | |
| margin-left: 5%; | |
| margin-top: 120px; | |
| width: 100%; | |
| } | |
| .everware-logo { | |
| position: absolute; | |
| /*left: 20px;*/ | |
| top: 20px; | |
| } | |
| .everware-logo h1 { | |
| float: right; | |
| position: relative; | |
| top: -5px; | |
| left: -5px; | |
| } | |
| .everware-logo img { | |
| float: left; | |
| width: 90px; | |
| height: 90px; | |
| } | |
| .everware-footer { | |
| position: absolute; | |
| bottom: 0; | |
| width: 100%; | |
| padding: 20px 8px; | |
| float: left; | |
| box-sizing: border-box; | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| } | |
| a:hover { | |
| text-decoration: none; | |
| } | |
| a { | |
| text-decoration: none; | |
| } | |
| .small-button { | |
| font-size: smaller; | |
| padding: 1px 3px; | |
| min-width: 0px; | |
| line-height: 20px; | |
| height: 20px; | |
| } | |
| .spinner { | |
| -webkit-animation: rotator 1.4s linear infinite; | |
| animation: rotator 1.4s linear infinite; | |
| } | |
| #big_spinner { | |
| display: inline-block; | |
| margin-top: -5%; | |
| margin-right: 1%; | |
| margin-left: 1.1%; | |
| } | |
| #log-lines { | |
| display: none; | |
| } | |
| /* from https://codepen.io/mrrocks/pen/EiplA */ | |
| @-webkit-keyframes rotator { | |
| 0% { | |
| -webkit-transform: rotate(0deg); | |
| transform: rotate(0deg); | |
| } | |
| 100% { | |
| -webkit-transform: rotate(270deg); | |
| transform: rotate(270deg); | |
| } | |
| } | |
| @keyframes rotator { | |
| 0% { | |
| -webkit-transform: rotate(0deg); | |
| transform: rotate(0deg); | |
| } | |
| 100% { | |
| -webkit-transform: rotate(270deg); | |
| transform: rotate(270deg); | |
| } | |
| } | |
| .path { | |
| stroke-dasharray: 187; | |
| stroke-dashoffset: 0; | |
| -webkit-transform-origin: center; | |
| transform-origin: center; | |
| -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite; | |
| animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite; | |
| } | |
| @-webkit-keyframes colors { | |
| 0% { | |
| stroke: #4285F4; | |
| } | |
| 25% { | |
| stroke: #DE3E35; | |
| } | |
| 50% { | |
| stroke: #F7C223; | |
| } | |
| 75% { | |
| stroke: #1B9A59; | |
| } | |
| 100% { | |
| stroke: #4285F4; | |
| } | |
| } | |
| @keyframes colors { | |
| 0% { | |
| stroke: #4285F4; | |
| } | |
| 25% { | |
| stroke: #DE3E35; | |
| } | |
| 50% { | |
| stroke: #F7C223; | |
| } | |
| 75% { | |
| stroke: #1B9A59; | |
| } | |
| 100% { | |
| stroke: #4285F4; | |
| } | |
| } | |
| @-webkit-keyframes dash { | |
| 0% { | |
| stroke-dashoffset: 187; | |
| } | |
| 50% { | |
| stroke-dashoffset: 46.75; | |
| -webkit-transform: rotate(135deg); | |
| transform: rotate(135deg); | |
| } | |
| 100% { | |
| stroke-dashoffset: 187; | |
| -webkit-transform: rotate(450deg); | |
| transform: rotate(450deg); | |
| } | |
| } | |
| @keyframes dash { | |
| 0% { | |
| stroke-dashoffset: 187; | |
| } | |
| 50% { | |
| stroke-dashoffset: 46.75; | |
| -webkit-transform: rotate(135deg); | |
| transform: rotate(135deg); | |
| } | |
| 100% { | |
| stroke-dashoffset: 187; | |
| -webkit-transform: rotate(450deg); | |
| transform: rotate(450deg); | |
| } | |
| } |