Created
February 19, 2023 06:42
-
-
Save AakashRao-dev/311b01f3cf032e663b8665d1190eb256 to your computer and use it in GitHub Desktop.
Coverage tab sample code
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<link rel="stylesheet" href="./css/style.css" /> | |
<title>CSS is Fun 😀</title> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="box"> | |
<h1 class="">CSS is Cool</h1> | |
<img | |
src="https://w7.pngwing.com/pngs/4/808/png-transparent-css3-css3-logo-logo-language-programming-language-css-3d-icon-thumbnail.png" | |
alt="css image" | |
/> | |
</div> | |
</div> | |
</body> | |
</html> |
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
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, | |
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | |
} | |
.container { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
min-height: 100vh; | |
background-color: #1e293b; | |
} | |
.box { | |
padding: 3rem 0; | |
font-weight: 700; | |
width: 100%; | |
max-width: 28rem; | |
border-radius: 0.75rem; | |
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); | |
background-color: #475569; | |
color: #e2e8f0; | |
} | |
h1 { | |
font-size: 3rem; | |
line-height: 1; | |
text-align: center; | |
} | |
img { | |
display: block; | |
max-width: 100%; | |
margin: 0 auto; | |
margin-top: 1.5rem; | |
width: 10rem; | |
} | |
a { | |
color: crimson; | |
font-size: 20px; | |
font-weight: semibold; | |
background-color: yellow; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment