| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * Stylesheet
- *
- * @namespace Lungo.Widgets
- * @class Splash
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- @import "constants.less";
- .splash{
- text-align: center;
- font-size: 1.2em;
- & > form {
- margin: 28px;
- }
- & img {
- max-width: 206px;
- margin: 20% auto 0%;
- }
- & h1 {
- margin-top: 20%;
- font-size: 2.2em;
- font-weight: bold;
- }
- & .button {
- margin-top: 10px;
- }
- & .copyright {
- position: absolute;
- width: 100%;
- bottom: 8px;
- left: 0px;
- font-size: 0.8em;
- font-style: normal;
- padding: 0px;
- }
- }
|