This repository has been archived by the owner on Mar 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved styling using card layout
- Loading branch information
Showing
5 changed files
with
153 additions
and
88 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project does not adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
### Changed | ||
- Improved styling using card layout | ||
|
||
## [0.1.3] - 2017-03-24 | ||
### Changed | ||
- new nicer login form | ||
- layout optimized (show html now on the right) | ||
- tell user that mails will be deleted | ||
|
||
### Added | ||
- set delete period in config | ||
|
||
## [<=0.1.2] | ||
See https://github.com/synox/disposable-mailbox/releases |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* http://tobiasahlin.com/spinkit/ */ | ||
|
||
.spinner { | ||
margin: 20px auto; | ||
width: 50px; | ||
height: 40px; | ||
text-align: center; | ||
font-size: 10px; | ||
} | ||
|
||
.spinner > div { | ||
background-color: #333; | ||
height: 100%; | ||
width: 6px; | ||
display: inline-block; | ||
|
||
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; | ||
animation: sk-stretchdelay 1.2s infinite ease-in-out; | ||
} | ||
|
||
.spinner .rect2 { | ||
-webkit-animation-delay: -1.1s; | ||
animation-delay: -1.1s; | ||
} | ||
|
||
.spinner .rect3 { | ||
-webkit-animation-delay: -1.0s; | ||
animation-delay: -1.0s; | ||
} | ||
|
||
.spinner .rect4 { | ||
-webkit-animation-delay: -0.9s; | ||
animation-delay: -0.9s; | ||
} | ||
|
||
.spinner .rect5 { | ||
-webkit-animation-delay: -0.8s; | ||
animation-delay: -0.8s; | ||
} | ||
|
||
@-webkit-keyframes sk-stretchdelay { | ||
0%, 40%, 100% { | ||
-webkit-transform: scaleY(0.4) | ||
} | ||
20% { | ||
-webkit-transform: scaleY(1.0) | ||
} | ||
} | ||
|
||
@keyframes sk-stretchdelay { | ||
0%, 40%, 100% { | ||
transform: scaleY(0.4); | ||
-webkit-transform: scaleY(0.4); | ||
} | ||
20% { | ||
transform: scaleY(1.0); | ||
-webkit-transform: scaleY(1.0); | ||
} | ||
} |
Binary file not shown.
This file contains 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
This file contains 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