Innitial commit
This commit is contained in:
101
css/style.css
Normal file
101
css/style.css
Normal file
@ -0,0 +1,101 @@
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
nav {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 12px;
|
||||
border-bottom: solid 1px #00000033;
|
||||
}
|
||||
|
||||
nav img {
|
||||
width: 40px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
nav li a {
|
||||
padding: 8px;
|
||||
color: #383c3f;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
nav ul {
|
||||
flex-direction: column;
|
||||
}
|
||||
nav li {
|
||||
text-align: center;
|
||||
}
|
||||
nav li a {
|
||||
padding: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
nav li a.title {
|
||||
font-size: 140%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
main div.heading {
|
||||
color: #383c3f;
|
||||
font-size: 200%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
main div.hero {
|
||||
color: #383c3f;
|
||||
width: 60%;
|
||||
margin-top: 16px;
|
||||
margin-bottom: 16px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
border: solid 1px #00000033;
|
||||
border-radius: 8px;
|
||||
padding: 16px;
|
||||
text-align: center;
|
||||
box-shadow: 1px 1px 8px #00000033;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
main div.hero {
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
|
||||
main div.hero h1 a {
|
||||
color: #383c3f;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
main div.hero p.justify {
|
||||
text-align: justify;
|
||||
text-justify: inter-word;
|
||||
}
|
||||
|
||||
main div.hero ul {
|
||||
width: fit-content;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: left;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
div.footer {
|
||||
border-top: solid 1px #00000033;
|
||||
}
|
||||
|
||||
div.footer p {
|
||||
color: #383c3f;
|
||||
text-align: center;
|
||||
}
|
Reference in New Issue
Block a user