12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @import 'https://fonts.googleapis.com/css?family=Catamaran';
-
- html, body
- {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- font-family: 'Catamaran', sans-serif;
- }
-
- body {
- background: #eee;
- background: linear-gradient(to left, #ddd , #eee);
- }
-
- .container
- {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- font-size: 20px;
- }
-
- #title
- {
- padding: 40px;
- text-align: center;
- }
-
- #button
- {
- cursor: pointer;
- padding: 10px;
- background-color: #7986CB;
- border: 0;
- color: white;
- font-size: 16px;
-
- }:hover
-
- {
- background-color: #5C6BC0;
- }
-
- :active
- {
- background-color: #3949AB;
- }
|