/* Initialization for all pages */ *{ margin:0; padding:0; } body{ font-family:'Saira',sans-serif; color: rgb(0, 27, 45); } /* General style that should apply to all pages */ 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); } form{ display: flex; flex-direction: column; justify-content: center; border: 2px solid rgb(0, 27, 45); padding: 25px; border-radius: 10px; margin: 10px; background: rgb(240, 252, 255); box-shadow: 1px 1px 1px rgb(0, 27, 45); } form > *{ margin: 10px; } .button{ background: none; border: 5px solid rgb(255, 99, 107); text-decoration: none; border-radius: 10px; padding: 10px 5px; color: rgb(0, 27, 45); cursor: pointer; font-size: 25px; box-shadow: 2px 2px 2px black; transition: 0.3s; text-align: center; } .button:hover{ background: rgb(0, 27, 45); color: rgb(240, 252, 255); } .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; } .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; } .input-error{ border-color: red; } .strand, .action{ display: none; } /* Components */ strand-selector{ display: flex; justify-content: center; } 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: 5px; } .header img{ display: inline-block; max-height: 65px; margin: 5px; 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; } /* 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; } @media screen and (max-width: 600px){ .button{ font-size: 15px; } .truncateLong{ max-width: 100px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } }