| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #registerForm {
- background: #0f0f0f;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- height: 100vh;
- }
- #registerForm a {
- text-decoration: none;
- }
- #registerForm header {
- font-family: "Open-Sans-Extrabold";
- font-size: 37px;
- font-weight: bolder;
- margin: 1.6rem 0;
- }
- #registerForm header a {
- color: #d3d629;
- }
- #registerForm header a:hover, #registerForm header a:focus {
- color: #a8aa2f;
- }
- #registerForm main {
- max-width: 800px;
- padding: 10px;
- }
- #registerForm main h5 {
- font-weight: bold;
- margin-bottom: 0.8rem;
- }
- #registerForm main hr {
- margin: 0.9rem 0;
- border-color: #888;
- }
- #registerForm main form section {
- margin: 10px 0;
- }
- #registerForm main form section blockquote {
- height: 90px;
- border: 1px solid #ddd;
- border-radius: 5px;
- overflow-y: scroll;
- padding: 10px;
- }
- #registerForm main form section div:last-child a {
- color: #0066c0;
- }
- #registerForm main form section div:last-child a:hover, #registerForm main form section div:last-child a:focus {
- color: #00558c;
- text-decoration: underline;
- }
- #registerForm main footer {
- text-align: center;
- font-size: 11px;
- color: #6c6c6c;
- background: transparent;
- border: 0;
- padding: 0;
- }
|