mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
1534 lines
27 KiB
SCSS
1534 lines
27 KiB
SCSS
@import "colors";
|
|
|
|
/*--------------------------MEDIA QUERY HELPERS------------------------*/
|
|
$small-devices: 576px;
|
|
$medium-devices: 768px;
|
|
$large-devices: 992px;
|
|
|
|
/*--------------------------------GENERAL------------------------------*/
|
|
|
|
body {
|
|
position: relative;
|
|
width: 100%;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
|
|
a.button,
|
|
button,
|
|
input[type="button"],
|
|
input[type="submit"],
|
|
input[type="reset"],
|
|
input[type="file"] {
|
|
border: none;
|
|
text-decoration: none;
|
|
background-color: $background-button-color;
|
|
padding: 0.4em;
|
|
margin: 0.1em;
|
|
font-size: 1.2em;
|
|
border-radius: 5px;
|
|
color: black;
|
|
&:hover {
|
|
background: hsl(0, 0%, 83%);
|
|
}
|
|
}
|
|
|
|
a.button,
|
|
input[type="button"],
|
|
input[type="submit"],
|
|
input[type="reset"],
|
|
input[type="file"] {
|
|
font-weight: bold;
|
|
}
|
|
|
|
a.button:not(:disabled),
|
|
button:not(:disabled),
|
|
input[type="button"]:not(:disabled),
|
|
input[type="submit"]:not(:disabled),
|
|
input[type="reset"]:not(:disabled),
|
|
input[type="checkbox"]:not(:disabled),
|
|
input[type="file"]:not(:disabled) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
input,
|
|
textarea[type="text"],
|
|
[type="number"] {
|
|
border: none;
|
|
text-decoration: none;
|
|
background-color: $background-button-color;
|
|
padding: 0.4em;
|
|
margin: 0.1em;
|
|
font-size: 1.2em;
|
|
border-radius: 5px;
|
|
max-width: 95%;
|
|
}
|
|
textarea {
|
|
border: none;
|
|
text-decoration: none;
|
|
background-color: $background-button-color;
|
|
padding: 7px;
|
|
font-size: 1.2em;
|
|
border-radius: 5px;
|
|
font-family: sans-serif;
|
|
}
|
|
select {
|
|
border: none;
|
|
text-decoration: none;
|
|
font-size: 1.2em;
|
|
background-color: $background-button-color;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a:not(.button) {
|
|
text-decoration: none;
|
|
color: $primary-dark-color;
|
|
&:hover {
|
|
color: $primary-light-color;
|
|
}
|
|
&:active {
|
|
color: $primary-color;
|
|
}
|
|
}
|
|
|
|
[aria-busy] {
|
|
--loading-size: 50px;
|
|
--loading-stroke: 5px;
|
|
--loading-duration: 1s;
|
|
position: relative;
|
|
}
|
|
|
|
[aria-busy]:after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: var(--loading-size);
|
|
height: var(--loading-size);
|
|
margin-top: calc(var(--loading-size) / 2 * -1);
|
|
margin-left: calc(var(--loading-size) / 2 * -1);
|
|
border: var(--loading-stroke) solid rgba(0, 0, 0, .15);
|
|
border-radius: 50%;
|
|
border-top-color: rgba(0, 0, 0, 0.5);
|
|
animation: rotate calc(var(--loading-duration)) linear infinite;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
|
|
.ib {
|
|
display: inline-block;
|
|
padding: 1px;
|
|
margin: 1px;
|
|
}
|
|
|
|
.collapse {
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
|
|
.collapse-header {
|
|
color: white;
|
|
background-color: $deepblue;
|
|
padding: 5px 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
|
|
.collapse-header-text {
|
|
flex: 2;
|
|
}
|
|
|
|
.collapse-header-icon {
|
|
transition: all ease-in-out 150ms;
|
|
&.reverse {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
}
|
|
.collapse-body {
|
|
padding: 10px;
|
|
}
|
|
}
|
|
|
|
.shadow {
|
|
box-shadow: rgba(60, 64, 67, 0.3) 0 1px 3px 0,
|
|
rgba(60, 64, 67, 0.15) 0 4px 8px 3px;
|
|
}
|
|
|
|
.w_big {
|
|
width: 75%;
|
|
}
|
|
|
|
.w_medium {
|
|
width: 47%;
|
|
}
|
|
|
|
.w_small {
|
|
width: 23%;
|
|
}
|
|
|
|
.clickable:not(:disabled):hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
[x-cloak] {
|
|
display: none !important;
|
|
}
|
|
|
|
/*--------------------------------HEADER-------------------------------*/
|
|
|
|
#popupheader {
|
|
width: 88%;
|
|
margin: 0 auto;
|
|
padding: 0.3em 1%;
|
|
}
|
|
|
|
#info_boxes {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin: 1em;
|
|
|
|
@media (max-width: 500px) {
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
#alert_box,
|
|
#info_box {
|
|
flex: 49%;
|
|
font-size: 0.9em;
|
|
margin: 0.2em;
|
|
border-radius: 0.6em;
|
|
.markdown {
|
|
margin: 0.5em;
|
|
}
|
|
&:before {
|
|
font-family: FontAwesome;
|
|
font-size: 4em;
|
|
float: right;
|
|
margin: 0.2em;
|
|
}
|
|
}
|
|
#info_box {
|
|
background: $primary-neutral-light-color;
|
|
&:before {
|
|
content: "\f05a";
|
|
color: hsl(210, 100%, 56%);
|
|
}
|
|
}
|
|
#alert_box {
|
|
background: $second-color;
|
|
&:before {
|
|
content: "\f06a";
|
|
color: $white-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
#page {
|
|
width: 90%;
|
|
margin: 20px auto 0;
|
|
/*---------------------------------NAV---------------------------------*/
|
|
.btn {
|
|
font-size: 15px;
|
|
font-weight: normal;
|
|
color: white;
|
|
padding: 9px 13px;
|
|
border: none;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
|
|
&.btn-blue {
|
|
background-color: $deepblue;
|
|
&:not(:disabled):hover {
|
|
background-color: darken($deepblue, 10%);
|
|
}
|
|
&:disabled {
|
|
background-color: rgba(70, 90, 126, 0.4);
|
|
}
|
|
}
|
|
|
|
&.btn-grey {
|
|
background-color: grey;
|
|
&:not(:disabled):hover {
|
|
background-color: darken(gray, 15%);
|
|
}
|
|
&:disabled {
|
|
background-color: lighten(gray, 15%);
|
|
}
|
|
}
|
|
|
|
&.btn-red {
|
|
background-color: #fc8181;
|
|
color: black;
|
|
&:not(:disabled):hover {
|
|
background-color: darken(#fc8181, 15%);
|
|
}
|
|
&:disabled {
|
|
background-color: lighten(#fc8181, 15%);
|
|
color: grey;
|
|
}
|
|
}
|
|
|
|
i {
|
|
margin-right: 4px;
|
|
}
|
|
}
|
|
|
|
/*--------------------------------CONTENT------------------------------*/
|
|
#quick_notif {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
list-style-type: none;
|
|
background: $second-color;
|
|
li {
|
|
padding: 10px;
|
|
}
|
|
}
|
|
|
|
#content {
|
|
padding: 1em 1%;
|
|
box-shadow: $shadow-color 0 5px 10px;
|
|
background: $white-color;
|
|
overflow: auto;
|
|
}
|
|
|
|
.alert {
|
|
margin: 10px;
|
|
border-radius: 4px;
|
|
padding: 12px 16px;
|
|
display: flex;
|
|
gap: 16px;
|
|
max-width: 100%;
|
|
align-items: center;
|
|
text-align: justify;
|
|
|
|
&.alert-green {
|
|
background-color: rgb(245, 255, 245);
|
|
color: rgb(3, 84, 63);
|
|
border: rgb(14, 159, 110) 1px solid;
|
|
}
|
|
|
|
&.alert-red {
|
|
background-color: rgb(255, 245, 245);
|
|
color: #c53030;
|
|
border: #fc8181 1px solid;
|
|
}
|
|
|
|
.alert-main {
|
|
flex: 2;
|
|
}
|
|
}
|
|
|
|
.tool_bar {
|
|
overflow: auto;
|
|
padding: 4px;
|
|
.tools {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
float: right;
|
|
background: $primary-neutral-light-color;
|
|
padding: 5px;
|
|
border-radius: 6px;
|
|
text-align: center;
|
|
a {
|
|
padding: 7px;
|
|
display: inline-block;
|
|
color: $black-color;
|
|
font-weight: bold;
|
|
margin: 2px;
|
|
flex: 1;
|
|
flex-wrap: nowrap;
|
|
white-space: nowrap;
|
|
&.selected_tab {
|
|
background: $primary-color;
|
|
color: $white-color;
|
|
border-radius: 6px;
|
|
}
|
|
&:hover {
|
|
background: $primary-color;
|
|
color: $white-color;
|
|
border-radius: 6px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*---------------------------------NEWS--------------------------------*/
|
|
#news {
|
|
display: flex;
|
|
|
|
@media (max-width: 800px) {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.news_column {
|
|
display: inline-block;
|
|
margin: 0;
|
|
vertical-align: top;
|
|
}
|
|
#news_admin {
|
|
margin-bottom: 1em;
|
|
}
|
|
#right_column {
|
|
flex: 20%;
|
|
float: right;
|
|
margin: 0.2em;
|
|
}
|
|
#left_column {
|
|
flex: 79%;
|
|
margin: 0.2em;
|
|
h3 {
|
|
background: $second-color;
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
|
padding: 0.4em;
|
|
margin: 0 0 0.5em 0;
|
|
text-transform: uppercase;
|
|
font-size: 1.1em;
|
|
&:not(:first-of-type) {
|
|
margin: 2em 0 1em 0;
|
|
}
|
|
}
|
|
}
|
|
@media screen and (max-width: $small-devices) {
|
|
#left_column,
|
|
#right_column {
|
|
flex: 100%;
|
|
}
|
|
}
|
|
|
|
/* AGENDA/BIRTHDAYS */
|
|
#agenda,
|
|
#birthdays {
|
|
display: block;
|
|
width: 100%;
|
|
background: white;
|
|
font-size: 70%;
|
|
margin-bottom: 1em;
|
|
#agenda_title,
|
|
#birthdays_title {
|
|
margin: 0;
|
|
border-radius: 5px 5px 0 0;
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
|
padding: 0.5em;
|
|
font-weight: bold;
|
|
font-size: 150%;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
background: $second-color;
|
|
}
|
|
#agenda_content {
|
|
overflow: auto;
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
|
height: 20em;
|
|
}
|
|
#agenda_content,
|
|
#birthdays_content {
|
|
.agenda_item {
|
|
padding: 0.5em;
|
|
margin-bottom: 0.5em;
|
|
&:nth-of-type(even) {
|
|
background: $secondary-neutral-light-color;
|
|
}
|
|
.agenda_time {
|
|
font-size: 90%;
|
|
color: grey;
|
|
}
|
|
.agenda_item_content {
|
|
p {
|
|
margin-top: 0.2em;
|
|
}
|
|
}
|
|
}
|
|
ul.birthdays_year {
|
|
margin: 0;
|
|
list-style-type: none;
|
|
font-weight: bold;
|
|
> li {
|
|
padding: 0.5em;
|
|
&:nth-child(even) {
|
|
background: $secondary-neutral-light-color;
|
|
}
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
margin-left: 1em;
|
|
list-style-type: square;
|
|
list-style-position: inside;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/* END AGENDA/BIRTHDAYS */
|
|
|
|
/* EVENTS TODAY AND NEXT FEW DAYS */
|
|
.news_events_group {
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
|
margin-left: 1em;
|
|
margin-bottom: 0.5em;
|
|
.news_events_group_date {
|
|
display: table-cell;
|
|
padding: 0.6em;
|
|
vertical-align: middle;
|
|
background: $primary-neutral-dark-color;
|
|
color: $white-color;
|
|
text-transform: uppercase;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-family: monospace;
|
|
font-size: 1.4em;
|
|
border-radius: 7px 0 0 7px;
|
|
|
|
div {
|
|
margin: 0 auto;
|
|
.day {
|
|
font-size: 1.5em;
|
|
}
|
|
}
|
|
}
|
|
.news_events_group_items {
|
|
display: table-cell;
|
|
width: 100%;
|
|
.news_event:nth-of-type(odd) {
|
|
background: white;
|
|
}
|
|
.news_event:nth-of-type(even) {
|
|
background: $primary-neutral-light-color;
|
|
}
|
|
.news_event {
|
|
display: block;
|
|
padding: 0.4em;
|
|
&:not(:last-child) {
|
|
border-bottom: 1px solid grey;
|
|
}
|
|
div {
|
|
margin: 0.2em;
|
|
}
|
|
h4 {
|
|
margin-top: 1em;
|
|
text-transform: uppercase;
|
|
}
|
|
.club_logo {
|
|
float: left;
|
|
min-width: 7em;
|
|
max-width: 9em;
|
|
margin: 0;
|
|
margin-right: 1em;
|
|
margin-top: 0.8em;
|
|
img {
|
|
max-height: 6em;
|
|
max-width: 8em;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
.news_date {
|
|
font-size: 100%;
|
|
}
|
|
.news_content {
|
|
clear: left;
|
|
.button_bar {
|
|
text-align: right;
|
|
.fb {
|
|
color: $faceblue;
|
|
}
|
|
.twitter {
|
|
color: $twitblue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
/* END EVENTS TODAY AND NEXT FEW DAYS */
|
|
|
|
/* COMING SOON */
|
|
.news_coming_soon {
|
|
display: list-item;
|
|
list-style-type: square;
|
|
list-style-position: inside;
|
|
margin-left: 1em;
|
|
padding-left: 0;
|
|
a {
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
.news_date {
|
|
font-size: 0.9em;
|
|
}
|
|
}
|
|
/* END COMING SOON */
|
|
|
|
/* NOTICES */
|
|
.news_notice {
|
|
margin: 0 0 1em 1em;
|
|
padding: 0.4em;
|
|
padding-left: 1em;
|
|
background: $secondary-neutral-light-color;
|
|
box-shadow: $shadow-color 0 0 2px;
|
|
border-radius: 18px 5px 18px 5px;
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
.news_content {
|
|
margin-left: 1em;
|
|
}
|
|
}
|
|
/* END NOTICES */
|
|
|
|
/* CALLS */
|
|
.news_call {
|
|
margin: 0 0 1em 1em;
|
|
padding: 0.4em;
|
|
padding-left: 1em;
|
|
background: $secondary-neutral-light-color;
|
|
border: 1px solid grey;
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
|
h4 {
|
|
margin: 0;
|
|
}
|
|
.news_date {
|
|
font-size: 0.9em;
|
|
}
|
|
.news_content {
|
|
margin-left: 1em;
|
|
}
|
|
}
|
|
/* END CALLS */
|
|
|
|
.news_empty {
|
|
margin-left: 1em;
|
|
}
|
|
.news_date {
|
|
color: grey;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: $small-devices) {
|
|
#page {
|
|
width: 98%;
|
|
}
|
|
}
|
|
|
|
|
|
.select2 {
|
|
margin: 10px 0!important;
|
|
max-width: 100%;
|
|
min-width: 100%;
|
|
|
|
ul {
|
|
margin: 0;
|
|
}
|
|
|
|
textarea {
|
|
background-color: inherit;
|
|
}
|
|
|
|
.select2-container--default {
|
|
color: black;
|
|
}
|
|
}
|
|
.select2-results {
|
|
.select-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 10px;
|
|
align-items: center;
|
|
|
|
img {
|
|
max-height: 40px;
|
|
border-radius: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
#news_details {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 0.4em;
|
|
width: 80%;
|
|
background: $white-color;
|
|
h4 {
|
|
margin-top: 1em;
|
|
text-transform: uppercase;
|
|
}
|
|
.club_logo {
|
|
display: inline-block;
|
|
text-align: center;
|
|
width: 19%;
|
|
float: left;
|
|
min-width: 15em;
|
|
margin: 0;
|
|
img {
|
|
max-height: 15em;
|
|
max-width: 12em;
|
|
display: block;
|
|
margin: 0 auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
.share_button {
|
|
border: none;
|
|
color: white;
|
|
padding: 0.5em 1em;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
font-size: 1.2em;
|
|
border-radius: 2px;
|
|
float: right;
|
|
display: block;
|
|
margin-left: 0.3em;
|
|
&:hover {
|
|
color: lightgrey;
|
|
}
|
|
}
|
|
|
|
.facebook {
|
|
background: $faceblue;
|
|
}
|
|
|
|
.twitter {
|
|
background: $twitblue;
|
|
}
|
|
|
|
.news_meta {
|
|
margin-top: 10em;
|
|
font-size: small;
|
|
}
|
|
}
|
|
|
|
.helptext {
|
|
margin-top: 10px;
|
|
display: block;
|
|
}
|
|
|
|
/*---------------------------POSTERS----------------------------*/
|
|
|
|
#poster_list,
|
|
#screen_list,
|
|
#poster_edit,
|
|
#screen_edit {
|
|
position: relative;
|
|
#title {
|
|
position: relative;
|
|
padding: 10px;
|
|
margin: 10px;
|
|
border-bottom: 2px solid black;
|
|
h3 {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
#links {
|
|
position: absolute;
|
|
display: flex;
|
|
bottom: 5px;
|
|
&.left {
|
|
left: 0;
|
|
}
|
|
&.right {
|
|
right: 0;
|
|
}
|
|
.link {
|
|
padding: 5px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
margin-left: 5px;
|
|
border-radius: 20px;
|
|
background-color: hsl(40, 100%, 50%);
|
|
color: black;
|
|
&:hover {
|
|
color: black;
|
|
background-color: hsl(40, 58%, 50%);
|
|
}
|
|
&.delete {
|
|
background-color: hsl(0, 100%, 40%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#posters,
|
|
#screens {
|
|
position: relative;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
#no-posters,
|
|
#no-screens {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.poster,
|
|
.screen {
|
|
min-width: 10%;
|
|
max-width: 20%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 10px;
|
|
border: 2px solid darkgrey;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
background-color: lightgrey;
|
|
* {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.name {
|
|
padding-bottom: 5px;
|
|
margin-bottom: 5px;
|
|
border-bottom: 1px solid whitesmoke;
|
|
}
|
|
.image {
|
|
flex-grow: 1;
|
|
position: relative;
|
|
padding-bottom: 5px;
|
|
margin-bottom: 5px;
|
|
border-bottom: 1px solid whitesmoke;
|
|
img {
|
|
max-height: 20vw;
|
|
max-width: 100%;
|
|
}
|
|
&:hover {
|
|
&::before {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 10;
|
|
content: "Click to expand";
|
|
color: white;
|
|
background-color: rgba(black, 0.5);
|
|
}
|
|
}
|
|
}
|
|
.dates {
|
|
padding-bottom: 5px;
|
|
margin-bottom: 5px;
|
|
border-bottom: 1px solid whitesmoke;
|
|
* {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
.begin,
|
|
.end {
|
|
width: 48%;
|
|
}
|
|
.begin {
|
|
border-right: 1px solid whitesmoke;
|
|
padding-right: 2%;
|
|
}
|
|
}
|
|
.edit,
|
|
.moderate,
|
|
.slideshow {
|
|
padding: 5px;
|
|
border-radius: 20px;
|
|
background-color: hsl(40, 100%, 50%);
|
|
color: black;
|
|
&:hover {
|
|
color: black;
|
|
background-color: hsl(40, 58%, 50%);
|
|
}
|
|
&:nth-child(2n) {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
.tooltip {
|
|
visibility: hidden;
|
|
width: 120px;
|
|
background-color: hsl(210, 20%, 98%);
|
|
color: hsl(0, 0%, 0%);
|
|
text-align: center;
|
|
padding: 5px 0;
|
|
border-radius: 6px;
|
|
position: absolute;
|
|
z-index: 10;
|
|
ul {
|
|
margin-left: 0;
|
|
display: inline-block;
|
|
li {
|
|
display: list-item;
|
|
list-style-type: none;
|
|
}
|
|
}
|
|
}
|
|
&.not_moderated {
|
|
border: 1px solid red;
|
|
}
|
|
&:hover .tooltip {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|
|
#view {
|
|
position: fixed;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 10;
|
|
visibility: hidden;
|
|
background-color: rgba(10, 10, 10, 0.9);
|
|
overflow: hidden;
|
|
&.active {
|
|
visibility: visible;
|
|
}
|
|
#placeholder {
|
|
width: 80vw;
|
|
height: 80vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
top: 0;
|
|
left: 0;
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*---------------------------ACCOUNTING----------------------------*/
|
|
#accounting {
|
|
.journal-table {
|
|
tbody {
|
|
.neg-amount {
|
|
color: red;
|
|
&:before {
|
|
font-family: FontAwesome;
|
|
font-size: 1em;
|
|
content: "\f063";
|
|
}
|
|
}
|
|
.pos-amount {
|
|
color: green;
|
|
&:before {
|
|
font-family: FontAwesome;
|
|
font-size: 1em;
|
|
content: "\f062";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*-----------------------------GENERAL-----------------------------*/
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: bold;
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 160%;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 150%;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 140%;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 130%;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 120%;
|
|
}
|
|
|
|
h6 {
|
|
font-size: 110%;
|
|
}
|
|
|
|
p,
|
|
pre {
|
|
margin-top: 0.8em;
|
|
margin-left: 0;
|
|
}
|
|
|
|
ul,
|
|
ol,
|
|
dl {
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
margin-left: 25px;
|
|
}
|
|
|
|
dt {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.edit-bar {
|
|
display: block;
|
|
margin: 4px;
|
|
a {
|
|
display: inline-block;
|
|
margin: 4px;
|
|
}
|
|
}
|
|
|
|
.important {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
color: red;
|
|
}
|
|
|
|
table {
|
|
width: 90%;
|
|
margin: 15px auto;
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
border-radius: 5px;
|
|
-moz-border-radius: 5px;
|
|
overflow: hidden;
|
|
box-shadow: rgba(60, 64, 67, 0.3) 0 1px 3px 0,
|
|
rgba(60, 64, 67, 0.15) 0 4px 8px 3px;
|
|
}
|
|
|
|
@media screen and (max-width: 500px) {
|
|
table {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
th {
|
|
padding: 4px;
|
|
}
|
|
|
|
td,
|
|
th {
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
padding: 5px 10px;
|
|
> ul {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
td {
|
|
margin: 5px;
|
|
border-collapse: collapse;
|
|
vertical-align: top;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
> ul {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
th,
|
|
thead td {
|
|
text-align: center;
|
|
border-top: none;
|
|
}
|
|
|
|
thead {
|
|
background-color: $deepblue;
|
|
color: white;
|
|
}
|
|
|
|
tbody > tr {
|
|
&:nth-child(even):not(.highlight) {
|
|
background: $primary-neutral-light-color;
|
|
}
|
|
&.clickable:hover {
|
|
cursor: pointer;
|
|
background: $secondary-neutral-light-color;
|
|
width: 100%;
|
|
}
|
|
&.highlight {
|
|
color: $primary-dark-color;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
sup {
|
|
vertical-align: super;
|
|
font-size: smaller;
|
|
}
|
|
|
|
sub {
|
|
vertical-align: sub;
|
|
font-size: smaller;
|
|
}
|
|
|
|
b,
|
|
strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
i,
|
|
em {
|
|
font-style: italic;
|
|
}
|
|
|
|
.highlight {
|
|
background: $second-color;
|
|
font-weight: bold;
|
|
}
|
|
|
|
u,
|
|
.underline {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#bar-ui {
|
|
padding: 0.4em;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: row-reverse;
|
|
|
|
#products {
|
|
flex-basis: 100%;
|
|
margin: 0.2em;
|
|
overflow: auto;
|
|
}
|
|
|
|
#click_form {
|
|
flex: auto;
|
|
margin: 0.2em;
|
|
}
|
|
|
|
#user_info {
|
|
flex: auto;
|
|
padding: 0.5em;
|
|
margin: 0.2em;
|
|
height: 100%;
|
|
background: $secondary-neutral-light-color;
|
|
img {
|
|
max-width: 70%;
|
|
}
|
|
input {
|
|
background: white;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*-----------------------------USER PROFILE----------------------------*/
|
|
|
|
.user_mini_profile {
|
|
height: 100%;
|
|
width: 100%;
|
|
img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
.user_mini_profile_infos {
|
|
padding: 0.2em;
|
|
height: 20%;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-around;
|
|
font-size: 0.9em;
|
|
div {
|
|
max-height: 100%;
|
|
}
|
|
.user_mini_profile_infos_text {
|
|
text-align: center;
|
|
.user_mini_profile_nick {
|
|
font-style: italic;
|
|
}
|
|
}
|
|
}
|
|
.user_mini_profile_picture {
|
|
height: 80%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.mini_profile_link {
|
|
display: block;
|
|
text-decoration: none;
|
|
span {
|
|
display: inline-block;
|
|
width: 50px;
|
|
vertical-align: middle;
|
|
}
|
|
em {
|
|
vertical-align: middle;
|
|
}
|
|
img {
|
|
max-width: 40px;
|
|
max-height: 60px;
|
|
margin: 2px auto;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
#notifications li {
|
|
padding: 5px;
|
|
margin: 2px;
|
|
list-style: none;
|
|
}
|
|
|
|
#moderation {
|
|
div {
|
|
margin: 2px;
|
|
padding: 2px;
|
|
border: solid 1px red;
|
|
text-align: center;
|
|
}
|
|
img {
|
|
width: 500px;
|
|
}
|
|
}
|
|
|
|
/*--------------------------------MATMAT-------------------------------*/
|
|
.matmat_results {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
.matmat_user {
|
|
flex-basis: 14em;
|
|
align-self: flex-start;
|
|
margin: 0.5em;
|
|
height: 18em;
|
|
overflow: hidden;
|
|
border: 1px solid black;
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
|
&:hover {
|
|
box-shadow: 1px 1px 5px $second-color;
|
|
}
|
|
}
|
|
.matmat_user a {
|
|
color: $primary-neutral-dark-color;
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
/*---------------------------------PAGE--------------------------------*/
|
|
|
|
.page_content {
|
|
display: block;
|
|
margin: 10px;
|
|
padding: 10px;
|
|
background: $white-color;
|
|
}
|
|
|
|
textarea {
|
|
width: 98%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/*---------------------------LAUNDERETTE-------------------------------*/
|
|
|
|
#token_form label {
|
|
display: inline;
|
|
}
|
|
|
|
/*------------------------------FORUM----------------------------------*/
|
|
|
|
#forum {
|
|
.button {
|
|
background-color: rgb(230, 230, 230);
|
|
padding: 10px;
|
|
font-weight: bold;
|
|
border-radius: 5px;
|
|
&:hover {
|
|
background-color: rgb(211, 211, 211);
|
|
}
|
|
}
|
|
.topic {
|
|
border: solid $primary-neutral-color 1px;
|
|
padding: 1px;
|
|
margin: 1px;
|
|
p {
|
|
margin: 1px;
|
|
font-size: smaller;
|
|
}
|
|
a {
|
|
color: $black-color;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.tools {
|
|
font-size: x-small;
|
|
border: none;
|
|
font-weight: bold;
|
|
a {
|
|
padding: 1px;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: small;
|
|
font-weight: bold;
|
|
padding: 2px;
|
|
}
|
|
|
|
.last_message date {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.last_message span {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.forum {
|
|
background: $primary-neutral-light-color;
|
|
padding: 1px;
|
|
margin: 1px;
|
|
p {
|
|
margin: 1px;
|
|
font-size: smaller;
|
|
}
|
|
a {
|
|
color: $black-color;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.search_bar {
|
|
margin: 10px 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
height: 20px;
|
|
align-items: center;
|
|
}
|
|
.search_check {
|
|
margin-left: 10px;
|
|
}
|
|
.search_bouton {
|
|
margin-left: 10px;
|
|
}
|
|
.category {
|
|
margin-top: 5px;
|
|
background: $secondary-color;
|
|
color: white;
|
|
border-radius: 10px 10px 0 0;
|
|
.title {
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
|
|
.message {
|
|
padding: 1px;
|
|
margin: 1px;
|
|
background: $secondary-neutral-light-color;
|
|
&:nth-child(odd) {
|
|
background: $primary-neutral-light-color;
|
|
}
|
|
.title {
|
|
font-size: 100%;
|
|
}
|
|
&.unread {
|
|
background: #e9eea1;
|
|
}
|
|
}
|
|
|
|
.msg_author.deleted {
|
|
background: #ffcfcf;
|
|
}
|
|
|
|
.msg_content {
|
|
&.deleted {
|
|
background: #ffefef;
|
|
}
|
|
display: inline-block;
|
|
width: 80%;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.msg_author {
|
|
display: inline-block;
|
|
width: 19%;
|
|
text-align: center;
|
|
img {
|
|
max-width: 70%;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
.msg_header {
|
|
display: inline-block;
|
|
width: 100%;
|
|
font-size: small;
|
|
}
|
|
|
|
.msg_meta {
|
|
font-size: small;
|
|
list-style-type: none;
|
|
li {
|
|
padding: 1px;
|
|
margin: 1px;
|
|
}
|
|
}
|
|
|
|
.forum_signature {
|
|
color: hsl(0, 0%, 75%);
|
|
border-top: 1px solid hsl(0, 0%, 75%);
|
|
a {
|
|
color: hsl(0, 0%, 75%);
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*--------------------------------FOOTER-------------------------------*/
|
|
|
|
footer {
|
|
width: 90%;
|
|
margin: 2em auto;
|
|
|
|
font-size: 90%;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
div {
|
|
margin: 0.6em 0;
|
|
color: $white-color;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
background-color: $primary-neutral-dark-color;
|
|
box-shadow: $shadow-color 0 0 15px;
|
|
a {
|
|
padding: 0.8em;
|
|
flex: 1;
|
|
font-weight: bold;
|
|
color: $white-color !important;
|
|
&:hover {
|
|
color: $primary-dark-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .version {
|
|
margin-top: 3px;
|
|
color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
}
|
|
|
|
/*---------------------------------FORMS-------------------------------*/
|
|
|
|
form {
|
|
margin: 0 auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.choose_file_widget {
|
|
display: none;
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane {
|
|
bottom: 0;
|
|
position: absolute;
|
|
width: 97%;
|
|
}
|
|
|
|
#user_edit {
|
|
* {
|
|
text-align: center;
|
|
}
|
|
img {
|
|
width: 100px;
|
|
}
|
|
}
|
|
|
|
#cash_summary_form label,
|
|
.inline {
|
|
display: inline;
|
|
}
|
|
|
|
.form_button {
|
|
width: 150px;
|
|
height: 120px;
|
|
padding: 2px;
|
|
display: inline-block;
|
|
font-size: 0.8em;
|
|
span {
|
|
width: 70px;
|
|
float: right;
|
|
}
|
|
img {
|
|
max-width: 50px;
|
|
max-height: 50px;
|
|
float: left;
|
|
}
|
|
strong {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
}
|
|
button {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
/*--------------------------------JQuery-------------------------------*/
|
|
|
|
.ui-state-active,
|
|
.ui-widget-content .ui-state-active,
|
|
.ui-widget-header .ui-state-active,
|
|
a.ui-button:active,
|
|
.ui-button:active,
|
|
.ui-button.ui-state-active:hover {
|
|
background: $primary-color;
|
|
border-color: $primary-color;
|
|
}
|
|
.ui-corner-all,
|
|
.ui-corner-bottom,
|
|
.ui-corner-right,
|
|
.ui-corner-top,
|
|
.ui-corner-left {
|
|
border-radius: 0;
|
|
}
|
|
|
|
#club_detail {
|
|
.club_logo {
|
|
float: right;
|
|
img {
|
|
display: block;
|
|
max-height: 10em;
|
|
max-width: 10em;
|
|
}
|
|
}
|
|
}
|