| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- /* 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;
- }
- }
|