Files
havox/tutorials/summed_area/style.css
2026-03-21 15:05:08 +00:00

84 lines
1.2 KiB
CSS

@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
html {
background-color: #2e3440;
}
h1 {
color: #eceff4;
font-family: "Roboto", sans-serif;
font-size: 48pt;
}
p {
color: #d8dee9;
font-family: "Roboto", sans-serif;
font-size: 16pt;
}
code {
font-size: 14pt;
border: 4px solid #ebcb8b;
}
a {
color: #d8dee9;
font-family: "Roboto", sans-serif;
font-size: 24pt;
}
#subsetOutput {
color: #88c0d0;
}
#wholeOutput {
color: #b48ead;
}
#tlOutput {
color: #d08770;
}
#tOutput {
color: #ebcb8b;
}
#lOutput {
color: #a3be8c;
}
#sumDiv {
text-align: center;
}
button {
display: inline-block;
width: 25%;
padding: 10px 25px;
margin: 0.1em;
border: 4px solid #88c0d0;
box-sizing: border-box;
text-decoration: none;
font-family: "Roboto", sans-serif;
font-size: 14pt;
color: #434c5e;
background-color: #eceff4;
text-align: center;
position: relative;
transition: all 0.15s;
}
button:hover {
background-color: #4c566a;
color: #eceff4;
border-color: #5e81ac;
}
button:focus {
border: 4px solid #88c0d0;
box-sizing: border-box;
}
#chillin {
display: none;
}
/*# sourceMappingURL=style.css.map */