123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- :root {
- --inputColor: black;
- --accent-color:#12e8b9;
- --fg-color: white;
- }
- body {
- background-color: #2a2b2b;
- color: var(--fg-color);
- font-family: verdana, arial, sans-serif;
- overflow-x: hidden;
- padding: 0;
- margin: 0;
- font-size: 16px;
- }
- input:focus {
- border: 1px solid rgb(97, 97, 97);
- }
- .centered {
- position: absolute;
- top: 40%;
- left: 50%;
- margin-right: -50%;
- transform: translate(-50%, -50%);
- }
- .hide{
- display: none;
- }
- span {
- color: #f218ee;
- }
- #bodyHeader {
- margin: 0;
- }
- .mainContainer p {
- margin-bottom:30px;
- margin-top: 5px;
- }
- .mainContainer h1 {
- font-size: 50px;
- }
- .bodyText {
- text-align: center;
- }
- .container {
- text-align: center;
- align-items: center;
- justify-content: center;
- }
- footer {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- justify-content: center;
- width: 100vw;
- padding: 10px;
- color: white;
- background-color: #1f2120;
- position: fixed;
- bottom: 0;
- }
- footer a{
- margin-right: 30px;
- }
- #footerText {
- margin: 10px;
- padding: 10px;
- }
- .sep:before {
- content: "\f004 ";
- }
- a {
- text-decoration: none;
- color: var(--fg-color);
- }
- footer a:hover{
- color: var(--accent-color);
- }
- #inputWrapper {
- display: flex;
- align-items: center;
- text-align: center;
- justify-content: center;
- }
- input {
- width: 500px;
- outline: none;
- color: white;
- background-color: #1f2120;
- border: 1px solid #1f2120;
- border-radius: 10px 0px 0px 10px;
- padding: 15px;
- font-size: inherit;
- }
- button {
- padding: 15px;
- background: #1f2120;
- border: 1px solid #1f2120;
- color: black;
- background-color: var(--accent-color);
- border: 0;
- border-radius: 0px 10px 10px 0px;
- cursor: pointer;
- font-size: 15px;
- font-weight: bold;
- }
- img {
- max-width: 25vw;
- max-height: 25vw;
- height: auto;
- width: auto;
- border-radius: 10px;
- box-shadow: 5px 5px 5px black;
- }
- @media only screen and (max-width: 750px) {
- body{
- font-size: 14px;
- }
- .mainContainer h1 {
- font-size: 35px;
-
- }
- input{
- width: 100%;
- }
- .centered {
- width: 95%;
- }
- }
|