[init]
This commit is contained in:
commit
985550eade
2 changed files with 65 additions and 0 deletions
15
index.html
Normal file
15
index.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>TSAIBAR</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>TSAIBAR</header>
|
||||
<main>
|
||||
Lorem ipsum...
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
50
style.css
Normal file
50
style.css
Normal file
|
@ -0,0 +1,50 @@
|
|||
:root {
|
||||
--black: #050501;
|
||||
--more-black: #000501;
|
||||
--white: #F9F9F9;
|
||||
--yellow: #EFEA5A;
|
||||
--green: #16DB93;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
overflow-x: hidden;
|
||||
background-color: var(--more-black);
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: var(--yellow);
|
||||
color: var(--black);
|
||||
font-size: 69px;
|
||||
padding: 42px 0 42px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
main {
|
||||
background-color: var(--black);
|
||||
color: var(--white);
|
||||
padding: 42px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
header, main {
|
||||
max-width: 1024px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
main a, main a:visited {
|
||||
color: var(--green);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
main a:hover {
|
||||
border-bottom: 4px solid var(--green);
|
||||
}
|
Loading…
Reference in a new issue