You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
First-Website/css.css

53 lines
809 B

/* Main CSS */
5 years ago
section {
5 years ago
float: left;
display: inline-block;
5 years ago
width: 50%;
5 years ago
padding-top: 55px;
height: 100vh;
5 years ago
overflow: scroll;
overflow-x: hidden;
}
section::-webkit-scrollbar {
display: none;
}
5 years ago
svg {
5 years ago
padding-top: 49px;
5 years ago
fill: #454752;
stroke-width: 1;
stroke: #454752;
5 years ago
height: 100vh;
}
/* Clock */
#timeBox {
5 years ago
margin-left: 1rem;
padding: 1rem;
5 years ago
font-family: 'Open Sans', sans-serif;
}
5 years ago
.time {
display: inline-block;
5 years ago
font-size: 7rem;
5 years ago
margin: 0;
}
#date {
5 years ago
font-size: 2rem;
5 years ago
margin: 0;
}
5 years ago
/* Mobile support */
@viewport {
width: device-width;
zoom: 1.0;
}
5 years ago
/* Support for mobile devices */
5 years ago
@media screen and (min-width:0px) and (max-width:1000px) {
5 years ago
section {
5 years ago
width: 100%!important;
}
svg {
display: none;
}
.time {
5 years ago
font-size: 4rem!important;
5 years ago
}
}