1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- * {
- box-sizing: border-box;
- }
- body {
- font-size: 1.4em;
- font-family: 'Varela Round', sans-serif;
- font-weight: bold;
- color: #6e859c;
- padding: 0;
- margin: 0;
- background: #e8e9c9;
- }
- .grid {
- background: #fff;
- border-radius: 0.285em;
- box-shadow: 0 0.1em 0 0 rgba(0, 0, 0, 0.1);
- margin: 20px auto;
- }
- .item {
- border-radius: 5px;
- padding: 10px;
- }
- .item:nth-child(odd) {
- background: #7092be;
- color: #ffffff;
- }
- .item:nth-child(even) {
- background: #a1cee9;
- color: #ffffff;
- }
- .container {
- color: #ffffff;
- }
- header {
- background: #3088bc;
- }
- main {
- background: #a4d2ec;
- }
- nav {
- background: #fbaba7;
- }
- aside {
- background: #67da89;
- }
- footer {
- background: #69859a;
- }
|