You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.2 KiB
CSS
84 lines
2.2 KiB
CSS
3 years ago
|
#headline { text-align: center; }
|
||
|
|
||
3 years ago
|
#tbl_communities { width:100%; }
|
||
|
|
||
3 years ago
|
#th_identifier { width:9%; }
|
||
3 years ago
|
.td_identifier { font-family: monospace; }
|
||
3 years ago
|
#th_name { width:13%; }
|
||
3 years ago
|
#th_language { width:0% }
|
||
3 years ago
|
#th_description { }
|
||
3 years ago
|
#th_users { width:0% }
|
||
3 years ago
|
.td_users { text-align: right; }
|
||
3 years ago
|
#th_preview { width:19%; }
|
||
3 years ago
|
#th_qr { width:0%; }
|
||
3 years ago
|
#th_join_url { width:15%; }
|
||
3 years ago
|
.td_join_url {
|
||
|
font-family: monospace;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
3 years ago
|
|
||
3 years ago
|
.copy_button { }
|
||
|
|
||
3 years ago
|
#tbl_footer { width:100%; }
|
||
|
|
||
3 years ago
|
#td_summary { text-align: center; }
|
||
|
#td_last_checked { text-align: center; }
|
||
3 years ago
|
|
||
|
|
||
|
:root {
|
||
|
--session-classic-dark-green: #31f196;
|
||
|
--session-classic-dark-gray-one: #414141;
|
||
|
--session-classic-dark-gray-two: #2d2d2d;
|
||
|
--session-classic-dark-gray-three: #1b1b1b;
|
||
3 years ago
|
--alternate-row-color: #e8e8e8;
|
||
3 years ago
|
}
|
||
|
th { background-color: lightgray; }
|
||
3 years ago
|
#tbl_communities tr:nth-child(odd) { background-color: var(--alternate-row-color); }
|
||
|
|
||
3 years ago
|
/*
|
||
|
body { background-color: var(--session-classic-dark-green); }
|
||
|
#tbl_communities tr:nth-child(odd) { background-color: var(--session-classic-dark-gray-two); }
|
||
|
#tbl_communities tr:nth-child(even) { background-color: var(--session-classic-dark-gray-three); }
|
||
|
*/
|
||
3 years ago
|
|
||
|
|
||
|
/* <QR code modals> */
|
||
3 years ago
|
.qr-code {
|
||
|
display: block;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
width: 50%;
|
||
|
}
|
||
3 years ago
|
.qr-code-modal {
|
||
|
display: none; /* Hidden by default */
|
||
|
position: fixed; /* Stay in place */
|
||
|
z-index: 1; /* Sit on top */
|
||
3 years ago
|
left: 0;
|
||
|
top: 0;
|
||
|
width: 100%; /* Full width */
|
||
|
height: 100%; /* Full height */
|
||
|
padding-top: 100px; /* Location of the box */
|
||
|
/*overflow: auto;*/ /* Enable scroll if needed */
|
||
|
/*background-color: rgb(0,0,0);*/ /* Fallback color */
|
||
|
/*background-color: rgba(0,0,0,0.4);*/ /* Black w/ opacity */
|
||
3 years ago
|
}
|
||
|
.qr-code-modal-content {
|
||
3 years ago
|
background-color: #ffffff;
|
||
|
border: 1px solid #000000;
|
||
3 years ago
|
width: 80%;
|
||
3 years ago
|
margin: auto;
|
||
|
padding: 20px;
|
||
3 years ago
|
}
|
||
|
.qr-code-modal-close {
|
||
|
float: right;
|
||
3 years ago
|
font-size: 35px;
|
||
3 years ago
|
font-weight: bold;
|
||
3 years ago
|
color: #aaaaaa;
|
||
3 years ago
|
}
|
||
|
.qr-code-modal-close:hover,
|
||
|
.qr-code-modal-close:focus {
|
||
|
cursor: pointer;
|
||
3 years ago
|
text-decoration: none;
|
||
|
color: #000000;
|
||
3 years ago
|
}
|