131 lines
2.3 KiB
CSS
131 lines
2.3 KiB
CSS
body {
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
margin: 0px;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.content-wrap {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.link-container {
|
|
margin-top: 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.link-container > a {
|
|
background-color: #c2c2c2;
|
|
padding: 7.5px 10px 7.5px 10px;
|
|
border: 0.5px solid black;
|
|
border-radius: 5px;
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.link-container > a:hover,
|
|
.link-container > a:active {
|
|
background-color: #969696;
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.header {
|
|
width: 100%;
|
|
padding: 15px 0px 15px 0px;
|
|
margin-bottom: 10px;
|
|
border-bottom: 2px solid rgb(254, 93, 0);
|
|
background-color: #00305d;
|
|
color: #fff;
|
|
}
|
|
|
|
.title {
|
|
font-size: x-large;
|
|
font-weight: 500;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
margin-left: 25px;
|
|
}
|
|
|
|
.nav {
|
|
margin-left: 5%;
|
|
cursor: pointer;
|
|
/* diable text selection */
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.nav:hover,
|
|
nav:active {
|
|
color: rgb(170, 170, 170);
|
|
}
|
|
|
|
.footer {
|
|
width: 100%;
|
|
font-size: x-small;
|
|
text-align: center;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
margin-top: auto;
|
|
border-top: 2px solid rgb(254, 93, 0);
|
|
background-color: #00305d;
|
|
color: #fff;
|
|
}
|
|
|
|
.center {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
input {
|
|
padding: 5px 12.5px;
|
|
border: 1px solid rgb(182, 182, 182);
|
|
border-radius: 2.5px;
|
|
color: #000;
|
|
font-size: 14px;
|
|
height: 25px;
|
|
-ms-box-sizing: content-box;
|
|
-moz-box-sizing: content-box;
|
|
-webkit-box-sizing: content-box;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
select {
|
|
padding: 5px 12.5px;
|
|
border: 1px solid rgb(182, 182, 182);
|
|
border-radius: 2.5px;
|
|
color: #000;
|
|
font-size: 14px;
|
|
height: 25px;
|
|
-ms-box-sizing: content-box;
|
|
-moz-box-sizing: content-box;
|
|
-webkit-box-sizing: content-box;
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
input[type="button"] {
|
|
cursor: pointer;
|
|
padding: 5px;
|
|
}
|
|
|
|
input[type="button"]:hover, input[type="button"]:active {
|
|
background-color: rgb(164, 164, 164);
|
|
border-color: rgb(81, 81, 81);
|
|
}
|