1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- html,
- body,
- ul {
- margin: 0;
- padding: 0;
- }
- body {
- background: #100410;
- height: 100%;
- width: 100%;
- }
- main {
- display: block;
- font-family: 'Noto Sans';
- left: 50%;
- position: absolute;
- top: 45%;
- transform: translate(-50%,-50%);
- width: 100%;
- }
- h1 {
- color: #a43261;
- display: block;
- margin: 0 auto;
- text-align: left;
- width: 400px;
- }
- hr {
- border: 0;
- /*
- border-top: 2px solid #a43261;
- */
- opacity: .4;
- width: 400px;
- }
- ul {
- display: block;
- margin: 0 auto;
- width: 400px;
- }
- li {
- color: #467874;
- display: inline-block;
- font-size: 1.2em;
- line-height: 1.5;
- list-style: none;
- margin: 5px;
- }
- a {
- color: #7c5d7a;
- text-decoration: none;
- transition: .2s;
- &:hover {
- color: #a43261;
- }
- }
|