Untitled
Abracadabra221
css
a year ago
4.2 kB
11
Indexable
* { margin: 0; padding: 0; } /*PAGE SETTINGS*/ body { color: #444; font-family: sans-serif; border-top: 10px solid #1098ad; position: relative; } .container { width: 1200px; /*margin-left: auto; margin-right: auto;*/ margin: 0 auto; display: flex; } .main-header { background-color: #f7f7f7; /* padding: 20px; padding-left: 40px; padding-right: 40px;*/ padding: 20px 40px; /* margin-bottom: 60px; height: 80px;*/ } nav { font-size: 18px; /* text-align: center; */ } article { /* margin-bottom: 60px;*/ } .post-header { margin-bottom: 40px; } aside { background-color: #f7f7f7; border-top: 5px solid #1098ad; border-bottom: 5px solid #1098ad; padding: 50px 40px; box-sizing: border-box; } h1, h2, h3 { color: #1098ad; } h1 { font-size: 26px; text-transform: uppercase; font-style: italic; } h2 { font-size: 40px; margin-bottom: 30px; } h3 { font-size: 30px; margin-bottom: 20px; margin-top: 40px; } h4 { font-size: 20px; text-transform: uppercase; text-align: center; margin-bottom: 30px; } p { font-size: 22px; line-height: 1.5; margin-bottom: 15px; } ul, ol { margin-left: 50px; margin-bottom: 20px; } li { font-size: 20px; margin-bottom: 10px; } li:last-child { margin-bottom: 0; } p footer { font-size: 16px; } /*article header p { font-style: italic; }*/ #author { font-style: italic; font-size: 18px; } #copyright { font-size: 16px; } .related-author { font-size: 18px; font-weight: bold; } .related { list-style: none; margin-left: 0; } /*body { /*background-color: blue; }*/ /*li:first-child { font-weight: bold; } li:last-child { font-style: italic; }*/ /*li:nth-child(even) { color: red; }*/ /* Misconception: this wont work! */ article p:first-child { color: red; } a:link { color: #1098ad; text-decoration: none; } a:visited { color: #1098ad; } a:hover { color: orangered; font-weight: bold; text-decoration: underline orangered; } a:active { background-color: black; font-style: italic; } .post-img { width: 100%; height: auto; } nav a:link { /* background-color: orangered; margin: 20px; padding: 20px; display: block; */ margin-right: 30px; margin-top: 10px; display: inline-block; } nav a:link:last-child { margin-right: 0; } button { font-size: 22px; padding: 20px; cursor: pointer; position: absolute; /* top: 50px; left: 50px;*/ bottom: 50px; right: 50px; } h1::first-letter { font-style: normal; margin-right: 5px; } h3 p::first-line { /* color: red;*/ } h2 { position: relative; } h2::before { content: "TOP"; background-color: #ffe70e; color: #444; font-size: 16px; font-weight: bold; display: inline-block; padding: 5px 10px; position: absolute; top: -10px; right: -25px; } /*FLOATS*/ /* .author-img { float: left; margin-bottom: 20px; } .author { margin-top: 10px; float: left; margin-left: 20px; } h1 { float: left; } nav { float: right; } .clear { clear: both; } .clearfix::after { clear: both; content: ""; display: block; } article { width: 825px; float: left; } aside { width: 300px; float: right; } footer { clear: both; } */ /*FLEXBOX*/ .main-header { display: flex; align-items: center; justify-content: space-between; } .post-header { display: flex; } .author-box { display: flex; align-items: center; margin-bottom: 15px; } .author { margin-bottom: 0; margin-left: 15px; } .related-post { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; } .related-link { font-size: 17px; font-weight: bold; font-style: normal; margin-bottom: 5px; display: block; } .related-author { margin-bottom: 0; font-size: 14px; font-weight: normal; font-style: italic; } .row { display: flex; }
Editor is loading...
Leave a Comment