Files
website/style.css
T
2024-08-12 23:42:11 +05:30

104 lines
1.4 KiB
CSS

* {
box-sizing: border-box;
}
@font-face {
font-family: "Bookerly";
font-style: normal;
font-weight: normal;
src: url("/font/Bookerly.ttf") format("woff2");
}
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: "Bookerly", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-feature-settings: "tnum";
font-variant-numeric: tabular-nums;
font-size: 20px;
line-height: 1.5;
font-weight: 400;
text-decoration: none;
color: #444;
width: 670px;
margin: 1em auto;
}
a {
display: inline-block;
color: #0060FF;
text-decoration: none;
padding-bottom: 0px;
border-bottom: 2px solid #0060FF;
}
a:hover {
color: black;
border-bottom: 2px solid black;
}
.header {
display: flex;
align-items: center;
text-decoration: none;
border: none;
}
.header:hover {
border-bottom: none;
}
.header p {
font-size: 20px;
color: #0061FF;
margin-left: 10px;
}
.logo {
border-radius: 50%;
height: 75px;
width: 75px;
}
.logo > img {
border-radius: 50%;
}
.header p {
color: #444;
}
nav {
display: block;
margin: 2em 0;
}
nav a {
margin-right: 1em;
}
nav a:last-child {
margin-right: 0;
}
.home img {
width: 100%;
}
.content-wrapper h3 span,
main ul li span {
font-size: 17px;
font-weight: normal;
}
@media only screen and (max-width: 700px) {
body {
width: 100%;
margin: 0;
padding: 1em;
}
}