A Pen by Matthew Grimm on CodePen.
Created
September 23, 2024 16:31
-
-
Save kogcyc/414e0c5be4b76c4106fc4fb5e48b9cec to your computer and use it in GitHub Desktop.
24-SEPT-23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="kontent"> | |
<div class='logo'> | |
kogswell | |
</div> | |
<div class="blog"> | |
This is some kontent. | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url(https://fonts.googleapis.com/css?family=Supermercado+One); | |
* { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
html { | |
background: #ffeecc; | |
padding: 0px; | |
} | |
body { | |
margin: 0px; | |
padding: 0px; | |
font-family: sans-serif; | |
} | |
.logo { | |
display: inline-block; | |
font-family: "Supermercado One"; | |
font-weight: 900; | |
color: #333; | |
font-size: 52px; | |
letter-spacing: -3px; | |
margin-left: -1px; | |
padding: 6px 0px 20px 6px; | |
-webkit-text-stroke: 3px #333; | |
} | |
a { | |
text-decoration: none; | |
} | |
#kontent { | |
padding: 10px; | |
} | |
.blog { | |
background-color: #5E5B53; | |
color: #fff; | |
padding: 10px; | |
} | |
#bottom_area { | |
max-width: 600px; | |
margin: 0 auto; | |
background: #fff; | |
color: #fff; | |
padding-left: 8px; | |
padding-right: 8px; | |
} | |
.blog { | |
border-radius: 4px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment