Created
April 26, 2016 01:36
-
-
Save AwolDes/63b2fd9cba93c3529a0b8c4e6577f97a to your computer and use it in GitHub Desktop.
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
| .app{ | |
| margin-left:25%; | |
| } | |
| .done-true { | |
| text-decoration: line-through; | |
| color: grey; | |
| } | |
| [data-toggle='on'] { | |
| display:list-item; | |
| } | |
| [data-toggle='off'] { | |
| display:none; | |
| } | |
| .menu{ | |
| margin-left:80%; | |
| margin-top:-130px; | |
| } | |
| .profile{ | |
| background:url(profile-head.jpg); | |
| display: block; | |
| width: 150px; | |
| height: 150px; | |
| overflow:hidden; | |
| margin: .8em auto; | |
| background-size: cover; | |
| background-repeat: no-repeat; | |
| background-position: center center; | |
| -webkit-border-radius: 50%; | |
| -moz-border-radius: 50%; | |
| border-radius: 50%; | |
| border: 5px solid #eee; | |
| box-shadow: 0 3px 2px rgba(0, 0, 0, 0.3); | |
| border: solid 3px black; | |
| } | |
| #about{ | |
| width:40%; | |
| background-color: white; | |
| padding: 20px; | |
| } | |
| .center{ | |
| text-align: center; | |
| } | |
| .close{ | |
| background-color: firebrick; | |
| color:white; | |
| margin-top: 0px; | |
| border: none; | |
| } | |
| .close:hover{ | |
| background-color: red; | |
| } | |
| .pt-page{ | |
| overflow: none !important; | |
| } | |
| .pt-page-1{ | |
| overflow:auto !important; | |
| } | |
| .up-btn{ | |
| border-radius: 40px; | |
| } | |
| .waves-effect.waves-green .waves-ripple { | |
| /* The alpha value allows the text and background color | |
| of the button to still show through. */ | |
| background-color: rgba(0, 220, 0, 0.65); | |
| } | |
| .back-btn{ | |
| font-size: 50px !important; | |
| -webkit-transform: rotate(90deg); | |
| transform: rotate(90deg); | |
| left:50px; | |
| border-radius: 40px; | |
| } | |
| .signup{ | |
| text-align: center; | |
| } | |
| .signup-btn{ | |
| background-color:#2ecc71; | |
| } | |
| .signup-btn:hover{ | |
| background-color:#3acc2e; | |
| } | |
| .signup-btn:focus{ | |
| background-color:#2ecc71; | |
| } | |
| .scroller{ | |
| width:100%; | |
| background-color: #EEEEEE; | |
| height:50px; | |
| opacity: 0.8; | |
| position: fixed; | |
| bottom: 0; | |
| } | |
| .scroller a{ | |
| left:550px; | |
| margin-top:7px; | |
| } | |
| body{ | |
| } | |
| .button-place{ | |
| margin-left: 0px; | |
| } | |
| .signup-input{ | |
| margin-left:0px !important; | |
| } | |
| /*http://cssdeck.com/labs/beautiful-flat-buttons*/ | |
| .turquoise-flat-button { | |
| position: relative; | |
| vertical-align: top; | |
| width: 70px; | |
| height: 30px; | |
| padding: 0; | |
| font-size: 15px; | |
| color: white; | |
| text-align: center; | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); | |
| background: #2ecc71; | |
| border: 0; | |
| border-bottom: 2px solid #28be68; | |
| cursor: pointer; | |
| -webkit-box-shadow: inset 0 -2px #28be68; | |
| box-shadow: inset 0 -2px #28be68; | |
| } | |
| .turquoise-flat-button:active { | |
| top: 1px; | |
| outline: none; | |
| -webkit-box-shadow: none; | |
| box-shadow: none; | |
| } | |
| .turquoise-flat-button:focus { | |
| background: #2ecc71; | |
| } | |
| .turquoise-flat-button:disabled { | |
| background: #9E9E9E; | |
| border-color: #9E9E9E; | |
| -webkit-box-shadow: inset 0 -2px #9E9E9E; | |
| box-shadow: inset 0 -2px #9E9E9E; | |
| } | |
| .turquoise-flat-button:hover:enabled { | |
| background: #3acc2e; | |
| border-bottom: 2px solid #2ecc71; | |
| box-shadow: inset 0 -2px #2ecc71; | |
| } | |
| .tag{ | |
| color: #2ecc71; | |
| } | |
| .item-tags{ | |
| //margin-left:37%; | |
| } | |
| .item-ui{ | |
| margin-left:37%; | |
| } | |
| .item-count{ | |
| //margin-left: 37%; | |
| } | |
| .dropdown-button{ | |
| background-color: #2ecc71; | |
| } | |
| .dropdown-content a{ | |
| color:#2ecc71 !important; | |
| } | |
| .dropdown-button:hover{ | |
| background-color: #3acc2e !important; | |
| } | |
| /* label underline focus color */ | |
| .input-field:focus { | |
| border-bottom: 1px solid #3acc2e !important; | |
| box-shadow: 0 1px 0 0 #3acc2e !important; | |
| } | |
| select{ | |
| display: block; | |
| width:95px; | |
| } | |
| input{ | |
| width:inherit !important; | |
| } | |
| @media (max-width: 768px) { | |
| .item-ui{ | |
| margin-left:20%; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment