Old high school files. Lessson notes/codes/projects etc.
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.

94 lines
1.1 KiB

3 years ago
:root {
--magic-number: 2vw;
}
* {
color: #111015;
}
html {
background-color: #f7edf0;
3 years ago
}
body{
margin: 0;
font-family: "Source Code Pro", monospace;
font-weight: 1000;
color: #fefefe;
position: relative;
3 years ago
}
nav {
height: 60px;
display: flex;
justify-content: space-around;
align-items: center;
3 years ago
}
nav a, nav a:link {
color: #111015;
text-decoration: none;
text-transform: uppercase;
font-size: 1.8rem;
font-weight: 900;
opacity: 0.5;
3 years ago
}
img {
position: fixed;
bottom: 0;
right: 0;
width: 25vw;
margin: 0 var(--magic-number) var(--magic-number) 0;
3 years ago
}
h1 {
margin: var(--magic-number);
3 years ago
}
a {
color: #40a0e5;
transition: opacity;
transition-duration: .2s;
}
a:hover { opacity: .4; }
3 years ago
form.page {
width: 40%;
margin: auto;
display: flex;
flex-direction: column;
}
3 years ago
form input {
margin-bottom: 1rem;
3 years ago
}
a, form.inline {
display: inline-block;
margin: 10px;
}
3 years ago
input, button {
border-radius: .2rem;
border: 1px solid black;
color: #111015;
padding-top: 0;
transition: opacity;
transition-duration: .2s;
}
3 years ago
input:hover, button:hover {
opacity: .5;
}
3 years ago
.center {
width: 80vw;
margin: auto;
text-align: center;
}