You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
633 B
CSS

1 year ago
:root{
--text: black;
--carbon-paper: blue;
}
body{
width: 100%;
margin: 0;
box-sizing: border-box;
}
/*//////// hmtl tag ////////*/
button:hover{
background-color: white;
color: var(--carbon-paper);
border: 1px solid var(--carbon-paper);
padding: 2px 5px;
border-radius:4px;
mix-blend-mode: multiply;
cursor:pointer;
1 year ago
}
/* ///////// class elem /////////// */
header{
display: flex;
position:absolute;
top: 100px;
left:300px;
1 year ago
}
.cover, .thesis{
width: 60%;
margin: 0 auto;
}
.cover h1{
font-size: 60pt;
}
.cover h3{
font-size: 18pt;
}