123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- .btn {
- position: relative;
- display: block;
- padding:8pt;
- overflow: hidden;
- border-width: 0;
- outline: none;
- box-shadow: 0 1pt 4pt rgba(0, 0, 0, .6);
- background-color: #41cd52;
- color: #ffffff;
- font-size: 12pt;
- font-weight: bold;
- text-align: center;
- transition: background-color .3s;
- }
- .btn:hover, .btn:focus {
- background-color: #3ab849;
- cursor: pointer;
- }
- .btn > * {
- position: relative;
- }
- .btn span {
- display: block;
- padding: 12px 24px;
- }
- .btn:before {
- content: "";
- position: absolute;
- top: 50%;
- left: 50%;
- display: block;
- width: 0;
- padding-top: 0;
- border-radius: 100%;
- background-color: rgba(236, 240, 241, .3);
- -webkit-transform: translate(-50%, -50%);
- -moz-transform: translate(-50%, -50%);
- -ms-transform: translate(-50%, -50%);
- -o-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- }
- .btn:active:before {
- width: 120%;
- padding-top: 120%;
- transition: width .2s ease-out, padding-top .2s ease-out;
- }
- .btn img {
- margin-left: auto;
- margin-right: auto;
- display: block;
- }
- .scrollable {
- width: 100%;
- height: 100%;
- overflow-y: auto;
- }
- .fadeOut {
- background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0, 0, 0,0)), color-stop(100%,rgba(255, 255, 255, 1))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 1) 100%); /* W3C */
- }
- .fadeIn {
- background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255, 255, 255, 1)), color-stop(100%,rgba(0, 0, 0, 0))); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 100%); /* IE10+ */
- background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 100%); /* W3C */
- }
- /*Input fields*/
- .inpt {
- position:relative;
- margin-top: 20pt;
- margin-bottom: 50px;
- }
- .inpt input {
- font-size: 16pt;
- padding: 9pt 9pt 4pt 4pt;
- display: block;
- width: 200pt;
- border: none;
- border-bottom: 1pt solid #3ab849;
- }
- .inpt input:invalid {
- outline: none;
- }
- .inpt input:focus {
- outline: none;
- }
- .inpt input:required {
- box-shadow: none;
- }
- .inpt label {
- color: #000000;
- font-size: 18pt;
- font-weight: normal;
- position: absolute;
- pointer-events: none;
- left: 5pt;
- top: 10pt;
- transition: 0.2s ease all;
- -moz-transition: 0.2s ease all;
- -webkit-transition: 0.2s ease all;
- }
- .inpt input:focus ~ label {
- top: -20pt;
- font-size: 12pt;
- color: #000000;
- }
- .inpt input:valid ~ label {
- top: -20pt;
- font-size: 12pt;
- color: #000000;
- }
- .inpt .bar {
- position: relative;
- display: block;
- width: 213pt;
- }
- .inpt .bar:before, .bar:after {
- content: '';
- height: 2pt;
- width: 0;
- bottom: 0;
- position: absolute;
- background: #3ab849;
- transition: 0.2s ease all;
- -moz-transition: 0.2s ease all;
- -webkit-transition: 0.2s ease all;
- }
- .inpt .bar:before {
- left:50%;
- }
- .inpt .bar:after {
- right:50%;
- }
- .inpt input:focus ~ .bar:before, input:focus ~ .bar:after {
- width:50%;
- }
- .inpt .highlight {
- position: absolute;
- height:75%;
- width: 213pt;
- bottom: 4pt;
- left:0;
- pointer-events: none;
- opacity: 0.5;
- }
- .inpt input:focus ~ .highlight {
- -webkit-animation:inputHighlighter 0.3s ease;
- -moz-animation:inputHighlighter 0.3s ease;
- animation:inputHighlighter 0.3s ease;
- }
- @-webkit-keyframes inputHighlighter {
- from { background:#ebffee; }
- to { width:0; background:transparent; }
- }
- @-moz-keyframes inputHighlighter {
- from { background:#ebffee; }
- to { width:0; background:transparent; }
- }
- @keyframes inputHighlighter {
- from { background:#ebffee; }
- to { width:0; background:transparent; }
- }
- .folderBtn {
- }
|