system64.dev/styles/stylemain.css

88 lines
1.5 KiB
CSS
Raw Normal View History

2023-04-16 18:33:02 -05:00
/* CSS for System64.dev v2, by IDeletedSystem64. Under MIT License (v4.14.23) */
2022-11-11 19:19:38 -06:00
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
2023-04-16 18:33:02 -05:00
/* Import dem fonts */
2022-11-11 19:19:38 -06:00
2023-04-16 18:33:02 -05:00
button.home {
font-family: 'Share Tech Mono', monospace;
color: white;
/* font-size: */
display: inline;
}
2023-04-16 18:33:02 -05:00
h1 {
2022-11-11 19:19:38 -06:00
font-family: 'Bitter', serif;
color: white;
display: inline;
2023-04-16 18:33:02 -05:00
font-size: 26pt
2022-11-11 19:19:38 -06:00
}
2023-01-15 22:25:55 -06:00
2023-04-16 18:33:02 -05:00
h2 {
font-family: 'Bitter', serif;
2022-11-11 19:19:38 -06:00
color: white;
2023-04-16 18:33:02 -05:00
font-size: 16pt;
}
2023-04-16 18:33:02 -05:00
li {
font-family: 'Share Tech Mono', monospace;
color: white;
2023-04-16 18:33:02 -05:00
font-size: 15pt;
list-style-type: square;
}
2023-04-16 18:33:02 -05:00
/* Text based stuffs */
2022-11-11 19:19:38 -06:00
body {
background-image: url("/img/bg.jpg");
}
2023-04-16 18:33:02 -05:00
.container {
display: flex;
2023-04-26 20:47:55 -05:00
flex-direction: row;
2022-11-11 19:19:38 -06:00
}
2023-04-16 18:33:02 -05:00
div.main {
2023-04-26 20:47:55 -05:00
height: 100%;
align-items: center;
margin: auto;
}
img.home {
height: 70vh;
width: auto;
align-self: center;
padding: 5%;
2022-11-11 19:19:38 -06:00
}
2023-04-16 18:33:02 -05:00
/* Website layout */
2022-11-11 19:19:38 -06:00
img.webbutton{
width: 88px;
height: 31px;
float: left;
text-align: center;
}
2023-04-16 18:33:02 -05:00
/* Web buttons :) */
2022-11-11 19:19:38 -06:00
2023-04-16 18:33:02 -05:00
/* Did you know: I wish I wasn't doing this right now? */
2023-04-26 20:47:55 -05:00
/* Better web site for mobile users coming soon(tm) */
2023-04-16 18:33:02 -05:00
@media (max-width: 64em) {
h1 {
font-size: 56pt;
2022-11-11 19:19:38 -06:00
}
2023-04-16 18:33:02 -05:00
h2 {
font-size: 28pt;
2022-11-11 19:19:38 -06:00
}
2023-04-16 18:33:02 -05:00
li {
font-size: 26pt;
2022-11-11 19:19:38 -06:00
}
2023-04-16 18:33:02 -05:00
div.main {
2023-04-26 20:47:55 -05:00
margin-top: 35vh;
2022-11-11 20:23:27 -06:00
}
2023-04-16 18:33:02 -05:00
.container {
flex-wrap: wrap;
align-items: center;
2022-11-11 20:23:27 -06:00
}
2023-04-26 20:47:55 -05:00
img.home {
display: none;
}
2023-04-16 18:33:02 -05:00
}