initial layout and styling added to style.css
This commit is contained in:
parent
e7f540de82
commit
9b9c975727
|
@ -0,0 +1,26 @@
|
|||
:root {
|
||||
}
|
||||
|
||||
*, ::before, ::after {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100vh;
|
||||
width: auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
main {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 2fr;
|
||||
}
|
||||
|
||||
section {
|
||||
grid-column: 2/3;
|
||||
}
|
Loading…
Reference in New Issue