html, body { font-family: "Trebuchet MS", Helvetica, sans-serif; padding: 0; margin: 0; height: calc(100% - 0.5rem) } #container { min-height:100%; position:relative; } #main { padding-bottom: 3rem; padding-top: 3rem; padding: 30px 10px; display: flex; flex-direction: column; justify-content: center; align-items: center; } #footer { position: absolute; bottom: 0; width: 100%; height: 3rem; } .banner { display:flex; justify-content: center; margin: 5rem; align-items:center; flex-direction: column; } .subtitle { color: #333; text-align: center; margin: 1rem; font-size: 1.2rem; } .primeblue { color: #1b75bc; } .title { font-size: 3rem; font-weight: bold; text-align: center; margin: 1rem; } .whiteblock { display: flex; background-color: #fff; align-items: center; justify-content: center; margin-left: 10rem; margin-right: 10rem; } .grayblock { background-color: #ddd; align-items: center; justify-content: center; } .grayblock .padded { padding: 3rem; } .horizontal { display: flex; flex-wrap: wrap; } .vertical { font-size: 1.5rem; display: flex; flex-direction: column; text-align: left; } .vertical .content { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; margin: 2rem } .vertical .content .image { width: 25rem; } .vertical .content .text { margin-left: 2rem; width: 26rem; } .horizontal .content { font-size: 2rem; text-align: center; } .horizontal .image { margin: 1rem; margin-left: 4rem; margin-right: 4rem; height: 20rem; border-radius: 1rem; width: auto; } .logins { height: 100px; width: 500px; margin: 5px; } .login_google { width: 200px; } .login_email { width: 200px; } /* bot navigation */ .footer { background-color: #d8d8d8; display: flex; justify-content:center; align-items:center; } .footer p { margin: 0px; text-decoration: none; display: flex; float: left; color: #424242; padding: 1rem; font-size: 17px; } .footer a { text-decoration: none; color: #085a87; } /* top navigation */ .navigation { background-color: #eaeaea; overflow: hidden; margin: auto; display: block; } .navigation_rightside { margin-left: auto; } .navigation a { float: left; display: block; color: #333; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .navigation a:hover { background-color: #ddd; color: black; } /* Add an active class to highlight the current page */ .navigation a.active { background-color: #4CAF50; color: white; } /* Hide the link that should open and close the navigation on small screens */ .navigation .icon { display: none; } /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the navigation (.icon) */ @media screen and (max-width: 600px) { .navigation a:not(:first-child) {display: none;} .navigation a.icon { float: right; display: block; } } /* The "responsive" class is added to the navigation with JavaScript when the user clicks on the icon. This class makes the navigation look good on small screens (display the links vertically instead of horizontally) */ @media screen and (max-width: 600px) { .navigation.responsive {position: relative;} .navigation.responsive a.icon { position: absolute; right: 0; top: 0; } .navigation.responsive a { float: none; display: block; text-align: left; } } /* Style page content */ .main { padding: 30px 10px; display: flex; flex-direction: column; justify-content: center; align-items: center; } /* The switch - the box around the slider */ .switch { position: relative; display: inline-block; width: 38px; height: 24px; } /* Hide default HTML checkbox */ .switch input { opacity: 0; width: 0; height: 0; } /* The slider */ .slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ddd; -webkit-transition: .4s; transition: .4s; } .slider.on { background-color: #2196F3; } .slider:before { position: absolute; content: ""; height: 18px; width: 18px; right: 3px; bottom: 3px; background-color: white; -webkit-transition: .4s; transition: .4s; } input:checked + .slider.on{ background-color: #ccc; } input:focus + .slider.on { box-shadow: 0 0 1px #ccc; } input:checked + .slider.on:before { -webkit-transform: translateX(-13px); -ms-transform: translateX(-13px); transform: translateX(-13px); } /* Rounded sliders */ .slider.round { border-radius: 24px; } .slider.round:before { border-radius: 50%; } .container { display: flex; flex-wrap: wrap; justify-content: center; align-items:center; /* flex-direction: row; */ padding: 0px 2rem 0px 2rem; } .container .button { padding: 1rem 1.5rem 1rem 1.5rem; font-size: 2rem; margin: 4rem; color: black; text-decoration: none; } .container .preview { width: 20rem; height: 20rem; margin: 1rem 3rem 4rem 3rem; } .container .button.logout { background-color: #ddd; } .container .button.delete { background-color: #b51409; } .container .button.adddevice { background-color: #ddd; color: white; } .container .button.addcalendar { background-color: #ddd; color: white; } .sub.container { width: 20rem; justify-content: left; } .profile { display: inline-flex; justify-content: center; align-items:center; flex-direction: row; } .profile .picture { width: 4rem; height: 4rem; border-radius: 50%; margin-right: 2rem; } .profile .name { font-size: 3rem; color: #333; } .grey { background-color: #ddd; } .sub.container .name { margin-right: 1rem; } .sub.container .data { background: #ddd; padding: 5px; border-radius: 5px; margin-right: 1rem; }