| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- /* Initialization for all pages */
- *{margin:0;padding:0;font-family:'Saira',sans-serif;}
- body{
- display: flex;
- flex-direction: column;
- color: rgb(0, 27, 45);
- min-height: 100vh;
- }
- /* Loader */
- #loaderContainer{
- justify-content: center;
- align-items: center;
- width: 100vw;
- height: 100vh;
- background: rgba(0, 27, 45, 0.5);
- z-index: 2;
- position: fixed;
- }
- .loader{
- margin-bottom: 200px;
- margin-right: 100px;
- }
- .loader .outer{
- border: 10px solid rgba(255, 255, 255, 0);
- border-top: 10px solid rgba(255, 99, 107, 0.8);
- border-bottom: 10px solid rgba(255, 99, 107, 0.8);
- border-radius: 50%;
- height: 80px;
- width: 80px;
- animation: spin1 2s infinite;
- position: absolute;
- }
- .loader .mid{
- border: 10px solid rgba(255, 255, 255, 0);
- border-right: 10px solid rgba(0, 27, 45, 0.8);
- border-left: 10px solid rgba(0, 27, 45, 0.8);
- border-radius: 50%;
- height: 60px;
- width: 60px;
- margin: 10px 0 0 10px;
- animation: spin2 2s infinite;
- position: absolute;
- }
- .loader .inner{
- border: 10px solid rgba(255, 255, 255, 0);
- border-top: 10px solid rgba(179, 191, 209, 0.8);
- border-bottom: 10px solid rgba(179, 191, 209, 0.8);
- border-radius: 50%;
- height: 40px;
- width: 40px;
- margin: 20px 0 0 20px;
- animation: spin3 2s infinite;
- position: absolute;
- }
- .loader img{
- margin: 10px 0 0 10px;
- height: 70px;
- width: 80px;
- position: absolute;
- z-index: -1;
- animation: imgSpin 3s linear infinite;
- }
- @keyframes spin1{
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
- }
- @keyframes spin2{
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(720deg); }
- }
- @keyframes spin3{
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(1080deg); }
- }
- @keyframes imgSpin{
- 0% {
- transform: rotateY(0deg);
- }
- 100% {
- transform: rotateY(360deg);
- }
- }
- /* General style that should apply to all pages */
- h1 {
- text-align: center;
- padding-bottom: 13px;
- }
- h3 {
- text-align: center;
- font-weight: 500;
- color: gray;
- font-size: 20px;
- }
- button{
- outline: 0;
- }
- button::-moz-focus-inner{
- border: 0;
- }
- .link {
- cursor: pointer;
- color: gray;
- text-decoration: none;
- }
- .link:hover {
- color: #ff636b;
- text-decoration: underline;
- cursor: pointer;
- }
- form{
- display: flex;
- flex-direction: column;
- justify-content: center;
- border: 2px solid rgb(0, 27, 45);
- padding: 50px;
- border-radius: 10px;
- margin: 10px;
- background: rgb(240, 252, 255);
- font-size: 16px;
- margin-top: 40px;
- width: 550px;
- justify-content: space-evenly;
- height: auto;
- }
- .button{
- display: initial;
- background: rgb(255, 99, 107);
- border: none;
- text-decoration: none;
- border-radius: 4px;
- padding: 10px 29px;
- color: white;
- cursor: pointer;
- transition: 0.3s;
- text-align: center;
- font-size: 18px;
- font-weight: bold;
- margin-right: 33px;
- }
- .buttonWithBorder {
- background: white;
- border: rgb(255, 99, 107) solid 2px;
- color: rgb(255, 99, 107);
- margin: 0;
- margin-top: 18px;
- margin-bottom: 12px;
- padding-top: 14px;
- padding-bottom: 14px;
- }
- .button:hover{
- background: rgb(243, 77, 86);
- color: white;
- }
- .button-small{
- background: none;
- border: 2px solid rgb(255, 99, 107);
- text-decoration: none;
- border-radius: 10px;
- padding: 3px 5px;
- color: #001b2d;
- cursor: pointer;
- font-size: 15px;
- box-shadow: 1px 1px 1px black;
- margin: 0 2px;
- transition: 0.3s;
- }
- .public-buttons {
- position: inherit;
- align-self: center;
- margin-right: 39px;
- }
- .button-small:hover{
- background: rgb(0, 27, 45);
- color: rgb(240, 252, 255);
- }
- .buttonDisabled{
- background: gray;
- text-decoration: none;
- border-radius: 10px;
- padding: 10px 5px;
- color: rgb(0, 27, 45);
- cursor: default;
- font-size: 25px;
- text-align: center;
- }
- .line-break{
- border: 1px solid rgb(255, 99, 107);
- margin: 30px 0;
- }
- .strand, .action{
- display: none;
- }
- /* Components */
- strand-selector{
- display: flex;
- justify-content: center;
- border-bottom: 1px solid rgb(255, 99, 107);
- }
- strand-selector button{
- margin: 10px;
- background: none;
- font-size: 25px;
- font-weight: bold;
- border: none;
- transition: box-shadow 1s;
- padding: 5px;
- }
- strand-selector button:hover{
- box-shadow: 15px 15px 15px gray;
- }
- .strand{
- transition: width 1s linear;
- }
- /* Header partial */
- .header{
- display: flex;
- justify-content: space-between;
- background: #001b2d;
- width: 100%;
- height: 75px;
- }
- .header .logo{
- display: flex;
- align-items: center;
- text-decoration: none;
- margin-left: 20px;
- }
- .header-logo{
- display: inline-block;
- color: rgb(255, 99, 107);
- font-size: 25px;
- font-weight: 600;
- }
- .header img{
- display: inline-block;
- max-height: 40px;
- margin: 15px;
- text-align: center;
- }
- .header h1{
- display: inline-block;
- color: rgb(255, 99, 107);
- }
- .header .logout{
- display: flex;
- align-items: center;
- color: rgb(255, 99, 107);
- float: right;
- margin-right: 25px;
- text-decoration: none;
- }
- .button-join {
- font-size: medium;
- color:white;
- text-decoration: blink;
- }
- /* Banner partial */
- .banner{
- width: 100%;
- text-align: center;
- list-style-type: none;
- font-weight: bold;
- color: white;
-
- }
- .banner .notification{
- background: rgb(201, 201, 201);
- list-style-type: none;
- padding: 3px;
- color: black;
- }
- .banner .error{
- background: rgb(255, 99, 107);
- list-style-type: none;
- padding: 5px;
- color: white;
- }
- /* Footer Partial */
- .spacer{
- flex: 1;
- }
- .footer{
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 10px;
- background: rgb(240, 252, 255);
- }
- .footer > *{
- margin: 5px;
- }
- .footer div > *{
- margin: 0 25px;
- }
- @media screen and (max-width: 600px){
- .button{
- font-size: 15px;
- }
- .truncateLong{
- max-width: 100px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- label {
- margin-top:20px ;
- }
|