forked from sent/waves
119 lines
1.6 KiB
CSS
119 lines
1.6 KiB
CSS
/*
|
|
|
|
GBA ONLINE; GBA.JS.ORG; "Online GameBoy Advance Emulator"
|
|
Copyright (C) 2021-present AYVACS
|
|
Licensed under the MIT License (view LICENSE.md for more information)
|
|
|
|
*/
|
|
|
|
#site-banner {
|
|
box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
|
|
width: 70%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
font-size: 22px;
|
|
height: 32px;
|
|
}
|
|
|
|
body {
|
|
font-family: tuna, sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
|
|
background-color: rgb(20, 20, 20);
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
padding-right: 17px;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.text {
|
|
text-align: center;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.sociallinks {
|
|
height: 200px;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.scrollable {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.table-center {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#repo-card {
|
|
box-shadow: 0 0 12px 12px rgba(0, 0, 0, 0.1);
|
|
top: 50%;
|
|
left: 50%;
|
|
padding: 40px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #ffffff;
|
|
font-size: 44px;
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
color: #ffffff;
|
|
font-size: 38px;
|
|
}
|
|
|
|
h3 {
|
|
text-align: center;
|
|
color: #ffffff;
|
|
font-size: 30px;
|
|
}
|
|
|
|
hr {
|
|
width: 80%;
|
|
height: 2px;
|
|
border-width: 0;
|
|
color: #161616;
|
|
background-color: #161616;
|
|
}
|
|
|
|
a {
|
|
font-size: 22px;
|
|
color: #a6b3ff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
th {
|
|
padding: 4px;
|
|
}
|
|
|
|
p {
|
|
font-size: 30px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
i {
|
|
font-size: 22px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
hr {
|
|
height: 2px;
|
|
border-width: 0;
|
|
color: white;
|
|
background-color: #919191;
|
|
}
|
|
|
|
|
|
/* Hide scrollbar */
|
|
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
} |