Created
March 15, 2020 07:32
-
-
Save limistah/968c359bb368c97766abdca9d29a565b to your computer and use it in GitHub Desktop.
Hello World CSS
This file contains 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
<html> | |
<head> | |
<link href="./program.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<div class="app"> </div> | |
</body> | |
</html> |
This file contains 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
* { | |
box-sizing: border-box; | |
} | |
html, body, .app { | |
height: 100vh; | |
width: 100vh; | |
position: relative; | |
} | |
.app { | |
background: linear-gradient() | |
} | |
.app::after { | |
content: "Hello world!"; | |
position: absolute; | |
width: 100%; | |
height: 90vh; | |
margin: auto 0; | |
font-size: 2em; | |
background: tomato; | |
color: lightgrey; | |
left: 0; | |
right: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment