css needs maybe a lot or little work still because it's still wonky but the base of what we wanted is here

This commit is contained in:
taah
2022-06-19 11:33:14 -07:00
parent 43ec1192bd
commit 1e13a01ef6
20 changed files with 381 additions and 136 deletions

26
src/css/App.css Normal file
View File

@ -0,0 +1,26 @@
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
.navbar-brand {
font-family: 'Permanent Marker', cursive;
}
@media only screen and (max-width: 768px) {
.download-button {
height: 7vh;
font-size: 3vw;
}
.download-button > img {
width: 25px;
}
.navbar-brand {
position: relative;
right: 5vw;
}
.navbar-nav {
position: relative;
right: 5vw;
}
}

103
src/css/DownloadPage.css Normal file
View File

@ -0,0 +1,103 @@
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200&display=swap');
body {
margin: 0;
}
ul > li {
color: white;
}
ul {
list-style-type: none;
flex-direction: row;
justify-content: space-around;
display: flex;
}
.builds {
padding: 0;
margin: 0;
background-color: #363534;
}
.builds {
flex-direction: column;
}
.builds > li {
padding-left: 1vw;
height: 10vh;
width: 100%;
border-bottom: 2px solid black;
display: table;
flex-wrap: nowrap;
}
.builds > li > .btn {
border-radius: 1vh !important;
position: relative;
top: 3vh;
}
.selected {
border-bottom: aqua 1px solid;
}
.selectable {
cursor: pointer;
}
ul[class^="changes-"] {
justify-content: left;
flex-direction: column;
margin: 0;
flex-wrap: nowrap;
align-content: flex-start;
}
ul[class^="changes-"] > li {
flex-wrap: nowrap;
margin: 0;
padding: 0;
font-size: 0.75vw;
position: relative;
bottom: 1vh;
left: 2vw;
width: 50%;
}
ul[class^="changes-"] > li > a {
text-decoration: none;
color: #91ffaf;
margin: 0;
}
.date {
display: table-cell;
float: right;
right: 10vw;
position: relative;
bottom: 2.5vh;
}
.nochanges {
position: relative;
bottom: 0;
}
@media only screen and (max-width: 768px) {
ul[class^="changes-"] > li {
position: relative;
left: 5vw;
font-size: 3vw;
}
.date {
bottom: 3.75vh;
}
.nochanges {
bottom: 1vh;
}
}

35
src/css/HomePage.css Normal file
View File

@ -0,0 +1,35 @@
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200&display=swap');
body {
background-color: #262626;
}
h1, h4, h5 {
color: white;
text-align: center;
position: relative;
font-family: 'IBM Plex Sans', sans-serif;
}
h1 {
top: 10vh;
font-weight: bolder;
}
h4 {
top: 10vh;
}
.download-button:hover {
transition: all 0.25s ease;
background-color: #c7c7c7 !important;
}
@media only screen and (max-width: 768px) {
h1 {
font-size: 7vw;
}
h4 {
font-size: 5vw;
}
}