/* 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; } /* 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; } table{ border-spacing: 0; } th{ color: rgb(240, 252, 255); padding: 20px; background: rgb(0, 27, 45); color: rgb(255, 99, 107); } tr{ color: rgb(0, 27, 45); text-align: center; } tr, td{ padding: 5px 20px; } tr:nth-of-type(even){ background: rgb(201, 201, 201); } tr:nth-of-type(odd){ background: rgb(240, 252, 255); } .clickableRow{ cursor: pointer; transition: 0.3s; } .clickableRow:hover{ position: relative; z-index: 2; box-shadow: 0 0 25px black; border-radius: 50px; } 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; } .buttonBox{ display: flex; justify-content: space-between; align-items: center; } .buttonBox > *{ margin: 10px; } .button{ display: initial; background: rgb(255, 99, 107); border: none; text-decoration: none; border-radius: 4px; padding: 10px 29px; color: white; cursor: pointer; font-size: 25px; transition: 0.3s; text-align: center; font-size: 18px; cursor: pointer; 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; } .buttonBox{ display: flex; justify-content: space-around; } .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 ; }