2017-04-27 20:57:21 +00:00
|
|
|
$first-color: hsl(220, 100%, 50%);
|
2018-10-07 19:33:49 +00:00
|
|
|
$second-color: hsl(48, 100%, 67%);
|
2017-04-27 20:57:21 +00:00
|
|
|
$primary-color: hsl(219.9, 53.7%, 50%);
|
2018-10-07 19:33:49 +00:00
|
|
|
$secondary-color: hsl(204, 64%, 44%);
|
2017-04-27 20:57:21 +00:00
|
|
|
$primary-color-text: hsl(0, 0%, 100%);
|
|
|
|
$secondary-color-text: hsla(0, 0%, 0%, 0.87);
|
|
|
|
|
|
|
|
$primary-light-color: hsl(219.8, 46.4%, 64.9%);
|
2018-10-07 20:52:32 +00:00
|
|
|
$primary-dark-color: hsl(203, 75%, 40%);
|
2017-04-27 20:57:21 +00:00
|
|
|
|
|
|
|
$secondary-light-color: hsl(40, 68%, 65%);
|
|
|
|
$secondary-dark-color: hsl(40, 68%, 35%);
|
|
|
|
|
|
|
|
|
|
|
|
$primary-neutral-color: hsl(219.6, 20.8%, 50%);
|
2018-10-07 19:33:49 +00:00
|
|
|
$primary-neutral-light-color: hsl(0, 0%, 94%);
|
|
|
|
$primary-neutral-dark-color: hsl(210, 29%, 29%);
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2018-10-07 19:33:49 +00:00
|
|
|
$secondary-neutral-color: hsl(204, 64%, 44%);
|
|
|
|
$secondary-neutral-light-color: hsl(0, 0%, 91%);
|
2017-04-27 20:57:21 +00:00
|
|
|
$secondary-neutral-dark-color: hsl(40, 57.6%, 17%);
|
|
|
|
|
|
|
|
$white-color: hsl(219.6, 20.8%, 98%);
|
2018-10-09 20:00:13 +00:00
|
|
|
$black-color: hsl(0, 0%, 17%);
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2018-10-07 19:33:49 +00:00
|
|
|
$faceblue: hsl(221, 44%, 41%);
|
|
|
|
$twitblue: hsl(206, 82%, 63%);
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2018-10-07 18:38:03 +00:00
|
|
|
$shadow-color: rgb(223, 223, 223);
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2018-10-07 19:33:49 +00:00
|
|
|
$background-bouton-color: hsl(0, 0%, 90%);
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2019-07-07 14:33:03 +00:00
|
|
|
/*--------------------------MEDIA QUERY HELPERS------------------------*/
|
|
|
|
$small-devices: 576px;
|
|
|
|
$medium-devices: 768px;
|
|
|
|
$large-devices: 992px;
|
|
|
|
$extra-large-devices: 1200px;
|
|
|
|
|
2017-04-27 20:57:21 +00:00
|
|
|
/*--------------------------------GENERAL------------------------------*/
|
|
|
|
|
|
|
|
body {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
|
|
|
|
2018-10-07 18:38:03 +00:00
|
|
|
input[type=button], input[type=submit], input[type=reset],input[type=file] {
|
|
|
|
border: none;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $background-bouton-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
box-shadow: $shadow-color 0px 0px 1px;
|
|
|
|
|
|
|
|
&:hover {
|
2018-10-07 19:33:49 +00:00
|
|
|
background: hsl(0, 0%, 83%);
|
2018-10-07 18:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
button{
|
|
|
|
border: none;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $background-bouton-color;
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: $shadow-color 0px 0px 1px;
|
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
2018-10-07 19:33:49 +00:00
|
|
|
background: hsl(0, 0%, 83%);
|
2018-10-07 18:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
input,textarea[type=text],[type=number]{
|
|
|
|
border: none;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $background-bouton-color;
|
|
|
|
padding: 7px;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
textarea{
|
|
|
|
border: none;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $background-bouton-color;
|
|
|
|
padding: 7px;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
select{
|
|
|
|
border: none;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 15px;
|
|
|
|
background-color: $background-bouton-color;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $primary-dark-color;
|
|
|
|
&:hover {
|
|
|
|
color: $primary-light-color;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
color: $primary-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ib {
|
|
|
|
display: inline-block;
|
2017-05-20 10:40:30 +00:00
|
|
|
padding: 1px;
|
|
|
|
margin: 1px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.w_big {
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.w_medium {
|
2017-05-20 10:40:30 +00:00
|
|
|
width: 47%;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.w_small {
|
2017-05-20 10:40:30 +00:00
|
|
|
width: 23%;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------HEADER-------------------------------*/
|
|
|
|
|
2017-09-01 16:31:48 +00:00
|
|
|
#header_language_chooser {
|
|
|
|
position: absolute;
|
2017-09-02 18:59:45 +00:00
|
|
|
top: 0.2em;
|
|
|
|
right: 0.5em;
|
|
|
|
width: 3%;
|
2017-09-01 16:31:48 +00:00
|
|
|
text-align: center;
|
|
|
|
input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2018-10-07 18:38:03 +00:00
|
|
|
padding: 4px;
|
2017-09-01 16:31:48 +00:00
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
form {
|
|
|
|
display: block;
|
2017-09-02 18:59:45 +00:00
|
|
|
margin: 0.2em 0em;
|
|
|
|
width: 100%;
|
2017-09-01 16:31:48 +00:00
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2017-09-01 16:31:48 +00:00
|
|
|
width: 90%;
|
2017-09-02 18:59:45 +00:00
|
|
|
margin: 0px auto;
|
2017-09-01 16:31:48 +00:00
|
|
|
display: flex;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 0px 0px 15px;
|
2017-09-02 18:59:45 +00:00
|
|
|
border-top: none;
|
|
|
|
background-color: $primary-neutral-dark-color;
|
2018-10-07 18:38:03 +00:00
|
|
|
border-radius: 0px 0px 10px 10px;
|
2017-09-01 16:31:48 +00:00
|
|
|
|
|
|
|
#header_logo {
|
2017-04-27 20:57:21 +00:00
|
|
|
display: inline-block;
|
2017-09-01 16:31:48 +00:00
|
|
|
flex: none;
|
|
|
|
background-size: 100% 100%;
|
2017-09-02 18:59:45 +00:00
|
|
|
background-color: $white-color;
|
2017-09-01 16:31:48 +00:00
|
|
|
padding: 0.2em;
|
2018-10-07 18:38:03 +00:00
|
|
|
border-radius: 0px 0px 0px 9px;
|
|
|
|
|
2017-09-01 16:31:48 +00:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
2017-09-01 16:31:48 +00:00
|
|
|
|
|
|
|
#header_connect_links {
|
|
|
|
margin: 0.6em 0.6em 0em auto;
|
2017-09-02 18:59:45 +00:00
|
|
|
color: $white-color;
|
2017-09-01 16:31:48 +00:00
|
|
|
form {
|
|
|
|
display: inline;
|
|
|
|
width: 100%;
|
|
|
|
label {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
display: button;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-01 16:31:48 +00:00
|
|
|
|
|
|
|
#header_bar {
|
|
|
|
display: flex;
|
|
|
|
flex: auto;
|
|
|
|
width: 80%;
|
2018-10-07 18:38:03 +00:00
|
|
|
|
2017-09-02 18:59:45 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0em 1em;
|
2018-10-07 18:38:03 +00:00
|
|
|
font-weight: bold;
|
2017-09-02 18:59:45 +00:00
|
|
|
color: $white-color;
|
|
|
|
&:hover {
|
|
|
|
color: $secondary-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-01 16:31:48 +00:00
|
|
|
#header_bars_infos {
|
|
|
|
width: 35ch;
|
|
|
|
flex: initial;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0.2em 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header_search {
|
|
|
|
display: inline-block;
|
|
|
|
flex: auto;
|
|
|
|
margin: 0.8em 0em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header_user_links {
|
2017-09-02 00:19:34 +00:00
|
|
|
display: flex;
|
2017-09-01 16:31:48 +00:00
|
|
|
width: 120ch;
|
|
|
|
flex: initial;
|
|
|
|
text-align: right;
|
2017-09-02 00:19:34 +00:00
|
|
|
margin: 0em;
|
|
|
|
div {
|
|
|
|
display: inline;
|
|
|
|
padding: 1.2em 0em;
|
|
|
|
&:first-child {
|
|
|
|
flex: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.white {
|
|
|
|
background: $white-color;
|
2017-09-03 10:01:52 +00:00
|
|
|
a {
|
|
|
|
color: $black-color;
|
|
|
|
}
|
2017-09-02 00:19:34 +00:00
|
|
|
}
|
|
|
|
#header_notif {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
max-height: 20em;
|
|
|
|
width: 22em;
|
|
|
|
overflow: auto;
|
|
|
|
list-style-type: none;
|
2017-10-06 00:42:33 +00:00
|
|
|
box-shadow: grey 1px 1px 5px;
|
2017-09-02 00:19:34 +00:00
|
|
|
background: white;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 80%;
|
|
|
|
margin: 1.5em 0em 0em -14em;
|
|
|
|
.header_notif_date {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.header_notif_time {
|
|
|
|
color: grey;
|
|
|
|
}
|
2017-09-03 10:01:52 +00:00
|
|
|
a {
|
|
|
|
margin: 0em;
|
|
|
|
color: $black-color;
|
|
|
|
&:hover {
|
|
|
|
color: $primary-dark-color;
|
|
|
|
}
|
|
|
|
}
|
2017-09-02 00:19:34 +00:00
|
|
|
li {
|
|
|
|
padding: 0.2em;
|
|
|
|
&:hover {
|
2018-10-07 19:33:49 +00:00
|
|
|
background: hsl(180, 14%, 77%);
|
2017-09-02 00:19:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
li:last-child {
|
|
|
|
text-align: center;
|
|
|
|
a {
|
|
|
|
color: $primary-dark-color;
|
|
|
|
&:hover {
|
|
|
|
color: $primary-light-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-01 16:31:48 +00:00
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#popupheader {
|
|
|
|
width: 88%;
|
|
|
|
margin: 0px auto;
|
|
|
|
padding: 0.3em 1%;
|
|
|
|
}
|
|
|
|
|
2017-09-01 16:31:48 +00:00
|
|
|
#info_boxes {
|
|
|
|
display: flex;
|
|
|
|
width: 90%;
|
2017-09-01 17:26:25 +00:00
|
|
|
margin: 1em auto;
|
2017-09-01 16:31:48 +00:00
|
|
|
p {
|
|
|
|
margin: 0px;
|
2018-10-07 18:38:03 +00:00
|
|
|
padding: 7px;
|
2017-09-01 16:31:48 +00:00
|
|
|
}
|
|
|
|
#alert_box, #info_box {
|
2018-10-07 18:38:03 +00:00
|
|
|
font-size: 14px;
|
2017-09-01 16:31:48 +00:00
|
|
|
display: inline-block;
|
|
|
|
flex: auto;
|
|
|
|
padding: 2px;
|
|
|
|
margin: 0.2em 1.5%;
|
|
|
|
min-width: 10%;
|
|
|
|
max-width: 46%;
|
|
|
|
min-height: 20px;
|
2017-09-01 17:26:25 +00:00
|
|
|
&:before {
|
|
|
|
float: left;
|
|
|
|
margin: 0.2em;
|
2017-09-02 18:59:45 +00:00
|
|
|
}
|
2017-09-01 16:31:48 +00:00
|
|
|
}
|
|
|
|
#info_box {
|
2018-10-07 18:38:03 +00:00
|
|
|
border-radius: 10px;
|
|
|
|
background: $primary-neutral-light-color;
|
2017-09-01 17:26:25 +00:00
|
|
|
&:before {
|
2017-10-06 00:42:33 +00:00
|
|
|
font-family: FontAwesome;
|
|
|
|
font-size: 4em;
|
|
|
|
content: "\f05a";
|
2018-10-07 19:33:49 +00:00
|
|
|
color: hsl(210, 100%, 56%);
|
2017-09-01 17:26:25 +00:00
|
|
|
}
|
2017-09-01 16:31:48 +00:00
|
|
|
}
|
|
|
|
#alert_box {
|
2018-10-07 18:38:03 +00:00
|
|
|
border-radius: 10px;
|
2017-09-02 18:59:45 +00:00
|
|
|
background: $second-color;
|
2017-09-01 17:26:25 +00:00
|
|
|
&:before {
|
2017-10-06 00:42:33 +00:00
|
|
|
font-family: FontAwesome;
|
|
|
|
font-size: 4em;
|
|
|
|
content: "\f06a";
|
|
|
|
color: $white-color;
|
2017-09-01 17:26:25 +00:00
|
|
|
}
|
2017-09-01 16:31:48 +00:00
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-02 18:59:45 +00:00
|
|
|
#page {
|
2017-04-27 20:57:21 +00:00
|
|
|
width: 90%;
|
2017-09-02 18:59:45 +00:00
|
|
|
margin: 0em auto;
|
|
|
|
/*---------------------------------NAV---------------------------------*/
|
|
|
|
nav {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
background-color: $primary-dark-color;
|
2017-04-27 20:57:21 +00:00
|
|
|
color: $white-color;
|
2018-10-08 17:39:13 +00:00
|
|
|
border-radius: 6px 6px 0px 0px;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 0px 0px 15px;
|
|
|
|
|
2018-11-05 19:54:25 +00:00
|
|
|
a {
|
2017-09-02 18:59:45 +00:00
|
|
|
flex: auto;
|
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
2017-04-27 20:57:21 +00:00
|
|
|
color: $white-color;
|
2017-09-02 18:59:45 +00:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: bolder;
|
|
|
|
text-decoration: none;
|
2018-10-08 17:39:13 +00:00
|
|
|
|
2017-09-02 18:59:45 +00:00
|
|
|
&:hover {
|
|
|
|
background: $secondary-neutral-color;
|
|
|
|
color: $white-color;
|
2018-10-08 17:39:13 +00:00
|
|
|
&:first-of-type {
|
|
|
|
border-radius: 6px 0px 0px 0px;
|
|
|
|
}
|
|
|
|
&:last-of-type {
|
|
|
|
border-radius: 0px 6px 0px 0px;
|
|
|
|
}
|
2017-09-02 18:59:45 +00:00
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
2018-10-20 13:10:45 +00:00
|
|
|
|
2018-11-05 19:54:25 +00:00
|
|
|
.dropdown {
|
2018-10-20 13:10:45 +00:00
|
|
|
flex: auto;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropbtn {
|
|
|
|
all: unset;
|
|
|
|
padding: 20px;
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-content {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
overflow: auto;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #f9f9f9;
|
2018-11-05 23:56:16 +00:00
|
|
|
box-shadow: 3px 3px 3px 0px $shadow-color;
|
2018-10-20 13:10:45 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-content a {
|
|
|
|
float: none;
|
|
|
|
color: black;
|
|
|
|
padding: 12px 16px;
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
|
|
border-radius: unset;
|
|
|
|
color: white;
|
|
|
|
background: $secondary-neutral-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------CONTENT------------------------------*/
|
2017-09-02 18:59:45 +00:00
|
|
|
#quick_notif {
|
2017-09-03 17:05:45 +00:00
|
|
|
width: 100%;
|
2017-09-02 18:59:45 +00:00
|
|
|
margin: 0px auto;
|
|
|
|
list-style-type: none;
|
|
|
|
background: $second-color;
|
|
|
|
li {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2017-05-10 21:03:49 +00:00
|
|
|
|
2017-09-02 18:59:45 +00:00
|
|
|
#content {
|
|
|
|
padding: 1em 1%;
|
2018-10-09 20:00:13 +00:00
|
|
|
box-shadow: $shadow-color 0px 5px 10px;
|
2017-09-02 18:59:45 +00:00
|
|
|
background: $white-color;
|
|
|
|
overflow: auto;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
2017-09-02 18:59:45 +00:00
|
|
|
|
2017-09-03 17:05:45 +00:00
|
|
|
.tool_bar {
|
|
|
|
overflow: auto;
|
|
|
|
padding: 4px;
|
|
|
|
.tools {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
float: right;
|
2018-10-07 18:38:03 +00:00
|
|
|
background: $primary-neutral-light-color;
|
|
|
|
padding: 5px;
|
2018-10-08 17:39:13 +00:00
|
|
|
border-radius: 6px;
|
2017-09-03 17:05:45 +00:00
|
|
|
text-align: center;
|
|
|
|
a {
|
2018-10-08 17:39:13 +00:00
|
|
|
padding: 7px;
|
2017-09-03 17:05:45 +00:00
|
|
|
display: inline-block;
|
2018-10-09 20:00:13 +00:00
|
|
|
color: $black-color;
|
2018-10-07 18:38:03 +00:00
|
|
|
font-weight: bold;
|
2018-10-08 17:39:13 +00:00
|
|
|
margin: 2px;
|
2017-09-03 17:05:45 +00:00
|
|
|
flex: 1;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
white-space: nowrap;
|
|
|
|
&.selected_tab {
|
2018-10-07 18:38:03 +00:00
|
|
|
background: $primary-color;
|
|
|
|
color: $white-color;
|
2018-10-08 17:39:13 +00:00
|
|
|
border-radius: 6px;
|
2017-09-03 17:05:45 +00:00
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background: $primary-color;
|
|
|
|
color: $white-color;
|
2018-10-08 17:39:13 +00:00
|
|
|
border-radius: 6px;
|
2017-09-03 17:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-25 18:14:20 +00:00
|
|
|
|
2017-09-03 17:05:45 +00:00
|
|
|
/*---------------------------------NEWS--------------------------------*/
|
|
|
|
#news {
|
2017-09-25 18:14:20 +00:00
|
|
|
.news_column {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0px;
|
|
|
|
vertical-align: top;
|
2017-09-03 17:05:45 +00:00
|
|
|
}
|
2017-09-25 18:14:20 +00:00
|
|
|
#news_admin {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
#right_column {
|
|
|
|
width: 20%;
|
|
|
|
float: right;
|
2017-09-03 17:05:45 +00:00
|
|
|
}
|
2017-09-25 18:14:20 +00:00
|
|
|
#left_column {
|
|
|
|
width: 79%;
|
|
|
|
h3 {
|
|
|
|
background: $second-color;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
2017-09-25 18:14:20 +00:00
|
|
|
padding: 0.4em;
|
|
|
|
margin: 0em 0em 0.5em 0em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 1.1em;
|
2017-09-26 11:45:14 +00:00
|
|
|
&:not(:first-of-type) {
|
2017-09-25 18:14:20 +00:00
|
|
|
margin: 2em 0em 1em 0em;
|
|
|
|
}
|
|
|
|
}
|
2017-09-03 17:05:45 +00:00
|
|
|
}
|
2017-09-25 18:14:20 +00:00
|
|
|
|
2017-09-26 11:45:14 +00:00
|
|
|
/* AGENDA/BIRTHDAYS */
|
|
|
|
#agenda,#birthdays {
|
2017-09-03 17:05:45 +00:00
|
|
|
display: block;
|
2017-09-25 18:14:20 +00:00
|
|
|
width: 100%;
|
2017-09-03 17:05:45 +00:00
|
|
|
background: white;
|
|
|
|
font-size: 70%;
|
2017-09-26 11:45:14 +00:00
|
|
|
margin-bottom: 1em;
|
|
|
|
#agenda_title,#birthdays_title {
|
2017-09-03 17:05:45 +00:00
|
|
|
margin: 0em;
|
2018-10-08 17:39:13 +00:00
|
|
|
border-radius: 5px 5px 0px 0px;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
2017-09-03 17:05:45 +00:00
|
|
|
padding: 0.5em;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 150%;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
|
|
|
background: $second-color;
|
|
|
|
}
|
|
|
|
#agenda_content {
|
|
|
|
overflow: auto;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
2017-09-03 17:05:45 +00:00
|
|
|
height: 20em;
|
2017-09-26 11:45:14 +00:00
|
|
|
}
|
|
|
|
#agenda_content,#birthdays_content {
|
2017-09-03 17:05:45 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-26 11:45:14 +00:00
|
|
|
ul.birthdays_year {
|
|
|
|
margin: 0em;
|
|
|
|
list-style-type: none;
|
|
|
|
font-weight: bold;
|
|
|
|
>li {
|
|
|
|
padding: 0.5em;
|
|
|
|
&:nth-child(even) {
|
|
|
|
background: $secondary-neutral-light-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
margin: 0em;
|
|
|
|
margin-left: 1em;
|
|
|
|
list-style-type: square;
|
|
|
|
list-style-position: inside;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
2017-09-03 17:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-26 11:45:14 +00:00
|
|
|
/* END AGENDA/BIRTHDAYS */
|
2017-09-25 18:14:20 +00:00
|
|
|
|
|
|
|
/* EVENTS TODAY AND NEXT FEW DAYS */
|
|
|
|
.news_events_group {
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
2017-09-25 18:14:20 +00:00
|
|
|
margin-left: 1em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
.news_events_group_date {
|
|
|
|
display: table-cell;
|
|
|
|
padding: 0.6em;
|
|
|
|
vertical-align: middle;
|
2018-10-07 18:38:03 +00:00
|
|
|
background: $primary-neutral-dark-color;
|
2017-09-25 18:14:20 +00:00
|
|
|
color: $white-color;
|
|
|
|
text-transform: uppercase;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 1.4em;
|
2018-10-08 17:39:13 +00:00
|
|
|
border-radius: 7px 0px 0px 7px;
|
2018-10-07 18:38:03 +00:00
|
|
|
|
2017-09-25 18:14:20 +00:00
|
|
|
div {
|
|
|
|
margin: 0px 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;
|
2017-09-26 12:05:19 +00:00
|
|
|
min-width: 7em;
|
2017-10-06 00:46:11 +00:00
|
|
|
max-width: 9em;
|
2017-09-25 18:14:20 +00:00
|
|
|
margin: 0em;
|
|
|
|
margin-right: 1em;
|
2017-09-26 12:05:19 +00:00
|
|
|
margin-top: 0.8em;
|
2017-09-25 18:14:20 +00:00
|
|
|
img {
|
|
|
|
max-height: 6em;
|
2017-09-26 12:05:19 +00:00
|
|
|
max-width: 8em;
|
2017-09-25 18:14:20 +00:00
|
|
|
display: block;
|
|
|
|
margin: 0em auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.news_date {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
.news_content {
|
|
|
|
clear: left;
|
2017-09-29 15:18:06 +00:00
|
|
|
.button_bar {
|
|
|
|
text-align: right;
|
|
|
|
.fb {
|
|
|
|
color: $faceblue;
|
|
|
|
}
|
|
|
|
.twitter {
|
|
|
|
color: $twitblue;
|
|
|
|
}
|
|
|
|
}
|
2017-09-25 18:14:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* 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: 0em;
|
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
.news_date {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* END COMING SOON */
|
|
|
|
|
|
|
|
/* NOTICES */
|
|
|
|
.news_notice {
|
|
|
|
margin: 0em 0em 1em 1em;
|
|
|
|
padding: 0.4em;
|
|
|
|
padding-left: 1em;
|
2018-10-07 18:38:03 +00:00
|
|
|
background: $secondary-neutral-light-color;
|
|
|
|
box-shadow: $shadow-color 0px 0px 2px;
|
|
|
|
border-radius: 18px 5px 18px 5px;
|
2017-09-25 18:14:20 +00:00
|
|
|
h4 {
|
|
|
|
margin: 0em;
|
|
|
|
}
|
|
|
|
.news_content {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* END NOTICES */
|
|
|
|
|
|
|
|
/* CALLS */
|
|
|
|
.news_call {
|
|
|
|
margin: 0em 0em 1em 1em;
|
|
|
|
padding: 0.4em;
|
|
|
|
padding-left: 1em;
|
|
|
|
background: $secondary-neutral-light-color;
|
|
|
|
border: 1px solid grey;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
2017-09-25 18:14:20 +00:00
|
|
|
h4 {
|
|
|
|
margin: 0em;
|
|
|
|
}
|
|
|
|
.news_date {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
.news_content {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* END CALLS */
|
|
|
|
|
|
|
|
.news_empty {
|
|
|
|
margin-left: 1em;
|
2017-09-03 17:05:45 +00:00
|
|
|
}
|
|
|
|
.news_date {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
2017-09-29 15:18:06 +00:00
|
|
|
#news_details {
|
2017-09-12 14:40:28 +00:00
|
|
|
display: inline-block;
|
2018-10-07 18:38:03 +00:00
|
|
|
margin-top: 20px;
|
2017-09-29 15:18:06 +00:00
|
|
|
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;
|
2018-05-06 21:55:33 +00:00
|
|
|
min-width: 15em;
|
2017-09-29 15:18:06 +00:00
|
|
|
margin: 0em;
|
|
|
|
img {
|
|
|
|
max-height: 15em;
|
|
|
|
max-width: 12em;
|
|
|
|
display: block;
|
|
|
|
margin: 0em auto;
|
2018-10-07 18:38:03 +00:00
|
|
|
margin-bottom: 10px;
|
2017-09-29 15:18:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.share_button {
|
|
|
|
border: none;
|
|
|
|
color: white;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 2px;
|
|
|
|
float: right;
|
|
|
|
display: block;
|
|
|
|
margin-left: 0.3em;
|
|
|
|
&:hover {
|
|
|
|
color: lightgrey;
|
|
|
|
}
|
|
|
|
}
|
2017-09-12 14:40:28 +00:00
|
|
|
|
2017-09-29 15:18:06 +00:00
|
|
|
.facebook {
|
|
|
|
background: $faceblue;
|
|
|
|
}
|
2017-09-12 14:40:28 +00:00
|
|
|
|
2017-09-29 15:18:06 +00:00
|
|
|
.twitter {
|
|
|
|
background: $twitblue;
|
|
|
|
}
|
2017-09-12 17:11:52 +00:00
|
|
|
|
2017-09-29 15:18:06 +00:00
|
|
|
.news_meta {
|
|
|
|
margin-top: 10em;
|
|
|
|
font-size: small;
|
|
|
|
}
|
2017-09-12 17:11:52 +00:00
|
|
|
}
|
|
|
|
|
2017-09-02 18:59:45 +00:00
|
|
|
.helptext {
|
2018-10-07 18:38:03 +00:00
|
|
|
margin-top: 10px;
|
2017-09-02 18:59:45 +00:00
|
|
|
display: block;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 13:13:29 +00:00
|
|
|
/*---------------------------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;
|
2018-10-07 19:33:49 +00:00
|
|
|
background-color: hsl(40, 100%, 50%);
|
2017-10-17 13:13:29 +00:00
|
|
|
color: black;
|
|
|
|
&:hover{
|
|
|
|
color: black;
|
2018-10-07 19:33:49 +00:00
|
|
|
background-color: hsl(40, 58%, 50%);
|
2017-10-17 13:13:29 +00:00
|
|
|
}
|
|
|
|
&.delete{
|
2018-10-07 19:33:49 +00:00
|
|
|
background-color: hsl(0, 100%, 40%);
|
2017-10-17 13:13:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#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;
|
2018-10-07 19:33:49 +00:00
|
|
|
background-color: hsl(40, 100%, 50%);
|
2017-10-17 13:13:29 +00:00
|
|
|
color: black;
|
|
|
|
&:hover{
|
|
|
|
color: black;
|
2018-10-07 19:33:49 +00:00
|
|
|
background-color: hsl(40, 58%, 50%);
|
2017-10-17 13:13:29 +00:00
|
|
|
}
|
|
|
|
&:nth-child(2n){
|
|
|
|
margin-top: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
}
|
2017-12-21 11:25:07 +00:00
|
|
|
.tooltip{
|
|
|
|
visibility: hidden;
|
|
|
|
width: 120px;
|
2018-10-07 19:33:49 +00:00
|
|
|
background-color: hsl(210, 20%, 98%);
|
|
|
|
color: hsl(0, 0%, 0%);
|
2017-12-21 11:25:07 +00:00
|
|
|
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;
|
|
|
|
}
|
2017-10-17 13:13:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#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%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-09 11:58:18 +00:00
|
|
|
/*---------------------------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-----------------------------*/
|
2017-04-27 20:57:21 +00:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 160%;
|
2017-09-02 00:19:34 +00:00
|
|
|
margin-left: 0px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 150%;
|
2017-09-02 00:19:34 +00:00
|
|
|
margin-left: 10px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 140%;
|
2017-09-02 00:19:34 +00:00
|
|
|
margin-left: 20px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 130%;
|
2017-09-02 00:19:34 +00:00
|
|
|
margin-left: 30px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: 120%;
|
2017-09-02 00:19:34 +00:00
|
|
|
margin-left: 40px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: 110%;
|
2017-09-02 00:19:34 +00:00
|
|
|
margin-left: 50px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p, pre {
|
2017-09-25 18:14:20 +00:00
|
|
|
margin-top: 0.8em;
|
2017-04-27 20:57:21 +00:00
|
|
|
margin-left: 0px;
|
|
|
|
}
|
|
|
|
|
2017-05-12 16:30:06 +00:00
|
|
|
ul, ol, dl {
|
2017-04-27 20:57:21 +00:00
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
margin-left: 25px;
|
|
|
|
}
|
|
|
|
|
2017-05-12 16:30:06 +00:00
|
|
|
dt {
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:57:21 +00:00
|
|
|
code {
|
|
|
|
font-family: monospace;
|
2017-08-09 20:02:41 +00:00
|
|
|
overflow: auto;
|
|
|
|
max-width: 100%;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
2017-05-20 10:40:30 +00:00
|
|
|
margin: 5px;
|
|
|
|
padding: 2px;
|
2017-04-27 20:57:21 +00:00
|
|
|
border: solid 1px $black-color;
|
|
|
|
}
|
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
blockquote h5:first-child {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:57:21 +00:00
|
|
|
.edit-bar {
|
|
|
|
display: block;
|
|
|
|
margin: 4px;
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.important {
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-weight: bold;
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 0.90em;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 4px;
|
|
|
|
margin: 5px;
|
|
|
|
border: solid 1px $primary-neutral-color;
|
|
|
|
border-collapse: collapse;
|
|
|
|
vertical-align: top;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
> ul {
|
|
|
|
margin-top: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
thead {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody > tr {
|
|
|
|
&:nth-child(even) {
|
|
|
|
background: $primary-neutral-light-color;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
background: $secondary-neutral-light-color;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-10 17:14:58 +00:00
|
|
|
sup {
|
|
|
|
vertical-align: super;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub {
|
|
|
|
vertical-align: sub;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
|
|
|
|
b, strong {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
i, em {
|
2017-04-27 20:57:21 +00:00
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.highlight {
|
|
|
|
background: $second-color;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-06-10 17:14:58 +00:00
|
|
|
u, .underline {
|
2017-04-27 20:57:21 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
#basket {
|
|
|
|
width: 40%;
|
|
|
|
background: $primary-neutral-light-color;
|
|
|
|
float: right;
|
|
|
|
padding: 10px;
|
2018-10-07 18:38:03 +00:00
|
|
|
border-radius: 10px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#products {
|
|
|
|
width: 90%;
|
|
|
|
margin: 0px auto;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bar_ui {
|
|
|
|
float: left;
|
|
|
|
min-width: 57%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#user_info_container {}
|
|
|
|
|
|
|
|
#user_info {
|
|
|
|
float: right;
|
|
|
|
padding: 5px;
|
|
|
|
width: 40%;
|
|
|
|
margin: 0px auto;
|
|
|
|
background: $secondary-neutral-light-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------USER PROFILE----------------------------*/
|
|
|
|
|
2018-06-04 22:18:07 +00:00
|
|
|
#user_profile_page {
|
|
|
|
#user_profile {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 2em;
|
|
|
|
margin-bottom: 4em;
|
|
|
|
#user_profile_infos {
|
|
|
|
flex-basis: 30%;
|
|
|
|
border-right: solid 1px grey;
|
|
|
|
div {
|
|
|
|
margin: 0.5em;
|
|
|
|
}
|
|
|
|
#user_profile_infos_items {
|
|
|
|
margin-top: 3em;
|
|
|
|
}
|
|
|
|
.user_profile_infos_item, .user_profile_infos_item_value {
|
|
|
|
vertical-align: top;
|
|
|
|
display: inline-block;
|
|
|
|
width: 49%;
|
|
|
|
}
|
|
|
|
.user_profile_infos_item {
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
#user_profile_infos_promo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
img {
|
|
|
|
margin: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#user_profile_infos_quote {
|
|
|
|
text-align: right;
|
|
|
|
color: grey;
|
|
|
|
font-style: italic;
|
|
|
|
&:after, &:before {
|
|
|
|
content: "\201C";
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#user_profile_pictures {
|
|
|
|
height: 20em;
|
|
|
|
flex-basis: 30%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
#user_profile_pictures_bigone {
|
|
|
|
flex-grow: 9;
|
|
|
|
flex-basis: 20em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#user_profile_pictures_thumbnails {
|
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 50px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
img {
|
|
|
|
margin: 0.1em;
|
|
|
|
width: 50px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
2018-06-05 22:25:27 +00:00
|
|
|
.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;
|
2018-06-06 22:10:33 +00:00
|
|
|
flex-wrap: nowrap;
|
2018-06-05 22:25:27 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:57:21 +00:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-04 22:18:07 +00:00
|
|
|
/* XXX This seems to be used in the SAS */
|
2017-04-27 20:57:21 +00:00
|
|
|
#pict {
|
|
|
|
display: inline-block;
|
|
|
|
width: 80%;
|
2018-10-07 19:33:49 +00:00
|
|
|
background: hsl(0, 0%, 20%);
|
|
|
|
border: solid hsl(0, 0%, 20%) 2px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
2018-06-05 22:25:27 +00:00
|
|
|
/*--------------------------------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;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 1px 1px 1px;
|
2018-06-05 22:25:27 +00:00
|
|
|
&:hover {
|
|
|
|
box-shadow: 1px 1px 5px $second-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.matmat_user a {
|
|
|
|
color: $primary-neutral-dark-color;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0em;
|
|
|
|
padding: 0em;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2017-06-10 14:52:03 +00:00
|
|
|
/*---------------------------------PAGE--------------------------------*/
|
|
|
|
|
|
|
|
.page_content {
|
|
|
|
display: block;
|
|
|
|
margin: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
background: $white-color;
|
|
|
|
}
|
|
|
|
|
2017-04-27 20:57:21 +00:00
|
|
|
textarea {
|
|
|
|
width: 98%;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*---------------------------LAUNDERETTE-------------------------------*/
|
|
|
|
|
|
|
|
#token_form label {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------FORUM----------------------------------*/
|
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
#forum {
|
2018-02-22 21:14:26 +00:00
|
|
|
.button {
|
2018-10-07 18:38:03 +00:00
|
|
|
background-color: rgb(230, 230, 230);
|
2018-10-07 19:33:49 +00:00
|
|
|
padding: 10px;
|
2018-10-07 18:38:03 +00:00
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 5px;
|
2018-02-22 21:14:26 +00:00
|
|
|
&:hover {
|
2018-10-07 18:38:03 +00:00
|
|
|
background-color: rgb(211, 211, 211);
|
2018-02-22 21:14:26 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-20 10:40:30 +00:00
|
|
|
.topic {
|
|
|
|
border: solid $primary-neutral-color 1px;
|
|
|
|
padding: 1px;
|
|
|
|
margin: 1px;
|
|
|
|
p {
|
|
|
|
margin: 1px;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
2017-06-10 17:39:40 +00:00
|
|
|
a {
|
|
|
|
color: $black-color;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2017-05-20 10:40:30 +00:00
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.tools {
|
|
|
|
font-size: x-small;
|
|
|
|
border: none;
|
2018-10-07 18:38:03 +00:00
|
|
|
font-weight: bold;
|
2017-05-20 10:40:30 +00:00
|
|
|
a {
|
|
|
|
padding: 1px;
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.title {
|
|
|
|
font-size: small;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.last_message date {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.last_message span {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow:hidden;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.forum {
|
2017-05-10 13:32:06 +00:00
|
|
|
background: $primary-neutral-light-color;
|
2017-05-20 10:40:30 +00:00
|
|
|
padding: 1px;
|
|
|
|
margin: 1px;
|
|
|
|
p {
|
|
|
|
margin: 1px;
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
2017-06-10 17:39:40 +00:00
|
|
|
a {
|
|
|
|
color: $black-color;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
2017-05-20 10:40:30 +00:00
|
|
|
|
2018-12-11 19:08:24 +00:00
|
|
|
.search_bar {
|
|
|
|
margin: 10px 0px;
|
|
|
|
display: flex;
|
|
|
|
height: 20p;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.search_check {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.search_bouton {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2017-05-20 10:40:30 +00:00
|
|
|
.category {
|
|
|
|
margin-top: 5px;
|
|
|
|
background: $secondary-color;
|
2018-10-07 19:33:49 +00:00
|
|
|
color: white;
|
2018-10-07 18:38:03 +00:00
|
|
|
border-radius: 10px 10px 0px 0px;
|
2017-05-20 10:40:30 +00:00
|
|
|
.title {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
2017-05-20 10:40:30 +00:00
|
|
|
|
|
|
|
.message {
|
|
|
|
padding: 1px;
|
|
|
|
margin: 1px;
|
2018-10-07 19:33:49 +00:00
|
|
|
background: $secondary-neutral-light-color;
|
2017-05-20 10:40:30 +00:00
|
|
|
&:nth-child(odd) {
|
|
|
|
background: $primary-neutral-light-color;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
&.unread {
|
2018-10-16 19:08:47 +00:00
|
|
|
background: #e9eea1;
|
2017-05-20 10:40:30 +00:00
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.msg_author.deleted {
|
|
|
|
background: #ffcfcf;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.msg_content {
|
|
|
|
&.deleted {
|
|
|
|
background: #ffefef;
|
|
|
|
}
|
|
|
|
display: inline-block;
|
|
|
|
width: 80%;
|
|
|
|
vertical-align: top;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.msg_author {
|
|
|
|
display: inline-block;
|
|
|
|
width: 19%;
|
|
|
|
text-align: center;
|
|
|
|
img {
|
|
|
|
max-width: 70%;
|
|
|
|
margin: 0px auto;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.msg_header {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
font-size: small;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 10:40:30 +00:00
|
|
|
.msg_meta {
|
|
|
|
font-size: small;
|
|
|
|
list-style-type: none;
|
|
|
|
li {
|
|
|
|
padding: 1px;
|
|
|
|
margin: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.forum_signature {
|
2018-10-07 19:33:49 +00:00
|
|
|
color: hsl(0, 0%, 75%);
|
|
|
|
border-top: 1px solid hsl(0, 0%, 75%);
|
2017-05-20 10:40:30 +00:00
|
|
|
a {
|
2018-10-07 19:33:49 +00:00
|
|
|
color: hsl(0, 0%, 75%);
|
2017-05-20 10:40:30 +00:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------SAS------------------------------------*/
|
|
|
|
|
|
|
|
.album {
|
|
|
|
display: inline-block;
|
|
|
|
border: solid 1px $black-color;
|
|
|
|
text-align: center;
|
|
|
|
padding: 5px;
|
|
|
|
width: 200px;
|
|
|
|
height: 140px;
|
2018-10-07 19:33:49 +00:00
|
|
|
background: hsl(0, 0%, 93%);
|
2017-04-27 20:57:21 +00:00
|
|
|
box-shadow: black 2px 2px 10px;
|
|
|
|
margin: 10px;
|
|
|
|
vertical-align: top;
|
|
|
|
img {
|
|
|
|
max-height: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.picture {
|
|
|
|
display: inline-block;
|
|
|
|
border: solid 1px $black-color;
|
|
|
|
width: 150px;
|
|
|
|
height: 100px;
|
|
|
|
margin: 5px;
|
2018-10-07 19:33:49 +00:00
|
|
|
background: #eeeeee;
|
2017-04-27 20:57:21 +00:00
|
|
|
box-shadow: grey 2px 2px 5px;
|
|
|
|
padding: 2px;
|
|
|
|
vertical-align: middle;
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100px;
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.not_moderated {
|
|
|
|
border: solid 1px red;
|
|
|
|
box-shadow: red 2px 2px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------FOOTER-------------------------------*/
|
|
|
|
|
|
|
|
footer {
|
2017-09-02 18:59:45 +00:00
|
|
|
width: 90%;
|
|
|
|
margin: 2em auto;
|
|
|
|
|
2018-10-07 18:38:03 +00:00
|
|
|
font-size: 90%;
|
2017-04-27 20:57:21 +00:00
|
|
|
text-align: center;
|
2017-09-02 18:59:45 +00:00
|
|
|
vertical-align: middle;
|
2017-04-27 20:57:21 +00:00
|
|
|
div {
|
2017-09-02 18:59:45 +00:00
|
|
|
margin: 0.6em 0em;
|
|
|
|
color: $white-color;
|
2018-10-07 18:38:03 +00:00
|
|
|
border-radius: 5px;
|
2017-09-02 18:59:45 +00:00
|
|
|
display: flex;
|
|
|
|
background-color: $primary-neutral-dark-color;
|
2018-10-07 18:38:03 +00:00
|
|
|
box-shadow: $shadow-color 0px 0px 15px;
|
2017-09-02 18:59:45 +00:00
|
|
|
a {
|
|
|
|
padding: 0.8em;
|
|
|
|
flex: 1;
|
2018-10-07 18:38:03 +00:00
|
|
|
font-weight: bold;
|
2017-09-02 18:59:45 +00:00
|
|
|
color: $white-color;
|
|
|
|
&:hover {
|
2018-10-07 18:38:03 +00:00
|
|
|
color: $primary-dark-color;
|
2017-09-02 18:59:45 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*---------------------------------FORMS-------------------------------*/
|
|
|
|
|
|
|
|
form {
|
|
|
|
margin: 0px auto;
|
2018-10-07 18:38:03 +00:00
|
|
|
margin-bottom: 10px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
display: block;
|
2018-10-07 18:38:03 +00:00
|
|
|
margin-bottom: 8px;
|
2017-04-27 20:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.choose_file_widget {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-dialog .ui-dialog-buttonpane {
|
|
|
|
bottom: 0px;
|
|
|
|
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;
|
|
|
|
}
|
2017-05-10 21:03:49 +00:00
|
|
|
}
|
2017-06-10 17:14:58 +00:00
|
|
|
|
|
|
|
/*-------------------------------MARKDOWN------------------------------*/
|
|
|
|
|
|
|
|
.markdown {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
code {
|
|
|
|
font-family: monospace;
|
|
|
|
color: $white-color;
|
|
|
|
background: $black-color;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 4px;
|
|
|
|
line-height: 120%;
|
2018-06-04 22:49:43 +00:00
|
|
|
vertical-align: middle;
|
2017-06-10 17:14:58 +00:00
|
|
|
}
|
|
|
|
a {
|
2017-09-02 18:59:45 +00:00
|
|
|
color: $primary-dark-color;
|
2017-06-10 17:14:58 +00:00
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2018-02-22 21:56:15 +00:00
|
|
|
.footnotes {
|
|
|
|
font-size: 85%;
|
|
|
|
}
|
2017-06-10 17:14:58 +00:00
|
|
|
}
|
|
|
|
|
2017-09-02 20:33:13 +00:00
|
|
|
/*--------------------------------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;
|
|
|
|
}
|
2017-09-03 17:05:45 +00:00
|
|
|
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-top,
|
|
|
|
.ui-corner-left {
|
|
|
|
border-radius: 0px;
|
|
|
|
}
|
2017-09-26 14:07:49 +00:00
|
|
|
|
|
|
|
#club_detail {
|
|
|
|
.club_logo {
|
|
|
|
float: right;
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
max-height: 10em;
|
|
|
|
max-width: 10em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-07-01 16:51:32 +00:00
|
|
|
|
|
|
|
/* --------------------------------------pedagogy-----------------------------------*/
|
|
|
|
|
2019-07-07 14:33:03 +00:00
|
|
|
$pedagogy-blue: #1bb9ea;
|
2019-07-07 16:29:31 +00:00
|
|
|
$pedagogy-orange: #ea7900;
|
|
|
|
$pedagogy-hover-blue: #0e97ce;
|
2019-07-07 14:33:03 +00:00
|
|
|
$pedagogy-light-blue: #caf0ff;
|
|
|
|
$pedagogy-white-text: #f0f0f0;
|
|
|
|
|
2019-07-01 16:51:32 +00:00
|
|
|
.pedagogy {
|
2019-07-08 07:37:30 +00:00
|
|
|
&.star-not-checked {
|
2019-07-08 13:25:28 +00:00
|
|
|
color : #f7f7f7;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
margin-top: 0px;
|
2019-07-08 07:37:30 +00:00
|
|
|
}
|
|
|
|
&.star-checked {
|
2019-07-08 13:25:28 +00:00
|
|
|
color: $pedagogy-orange;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
margin-top: 0px;
|
2019-07-08 07:37:30 +00:00
|
|
|
}
|
2019-07-07 14:33:03 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
@media screen and (max-width: $large-devices){
|
|
|
|
&.star-not-checked {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
&.star-checked {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
2019-07-07 19:38:00 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
#dynamic_view {
|
|
|
|
font-size: 1.1em;
|
2019-07-07 19:38:00 +00:00
|
|
|
|
2019-07-25 17:01:53 +00:00
|
|
|
overflow-wrap: break-word;
|
2019-07-07 19:38:00 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
td {
|
|
|
|
text-align: center;
|
|
|
|
border: none;
|
|
|
|
}
|
2019-07-07 19:38:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
#search_form {
|
2019-07-07 17:07:19 +00:00
|
|
|
|
2019-07-25 17:01:53 +00:00
|
|
|
.search-form-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto;
|
2019-07-29 13:35:16 +00:00
|
|
|
grid-template-rows: auto auto auto;
|
2019-07-25 17:01:53 +00:00
|
|
|
grid-template-areas:
|
|
|
|
"action-bar action-bar"
|
|
|
|
"search-bar search-bar"
|
|
|
|
"radio-department radio-department"
|
|
|
|
"radio-credit-type radio-semester";
|
2019-07-07 16:29:31 +00:00
|
|
|
}
|
2019-07-25 17:01:53 +00:00
|
|
|
|
|
|
|
.action-bar {
|
|
|
|
grid-area: action-bar;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-bar {
|
|
|
|
grid-area: search-bar;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 200px;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
grid-template-areas: "search-bar-input search-bar-button";
|
|
|
|
|
2019-08-07 18:03:21 +00:00
|
|
|
@media screen and (max-width: $medium-devices){
|
|
|
|
grid-template-columns: auto auto;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
grid-template-areas: "search-bar-input search-bar-button";
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $small-devices){
|
|
|
|
grid-template-columns: auto;
|
|
|
|
grid-template-rows: auto;
|
|
|
|
grid-template-areas: "search-bar-input";
|
|
|
|
|
|
|
|
.search-bar-button {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-25 17:01:53 +00:00
|
|
|
.search-bar-input {
|
|
|
|
grid-area: search-bar-input;
|
|
|
|
background: $pedagogy-light-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-bar-button {
|
|
|
|
grid-area: search-bar-button;
|
|
|
|
background: $pedagogy-orange;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-department {
|
|
|
|
grid-area: radio-department;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-credit-type {
|
|
|
|
grid-area: radio-credit-type;
|
|
|
|
}
|
|
|
|
|
|
|
|
.radio-semester {
|
|
|
|
grid-area: radio-semester;
|
2019-07-07 16:29:31 +00:00
|
|
|
}
|
2019-07-25 17:01:53 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.radio-guide input[type="radio"],input[type="checkbox"] {
|
|
|
|
display:none;
|
2019-07-07 16:29:31 +00:00
|
|
|
}
|
2019-07-08 13:25:28 +00:00
|
|
|
.radio-guide {
|
|
|
|
margin-top: 10px;
|
|
|
|
color: white;
|
2019-07-07 16:29:31 +00:00
|
|
|
}
|
2019-07-08 13:25:28 +00:00
|
|
|
.radio-guide label {
|
2019-07-25 17:01:53 +00:00
|
|
|
display: inline-block;
|
2019-07-08 13:25:28 +00:00
|
|
|
background-color: $pedagogy-blue;
|
|
|
|
padding: 10px 20px;
|
2019-07-29 13:35:16 +00:00
|
|
|
font-family: Arial, sans-serif;
|
2019-07-25 17:01:53 +00:00
|
|
|
font-size: 16px;
|
2019-07-08 13:25:28 +00:00
|
|
|
border-radius: 4px;
|
2019-07-07 16:29:31 +00:00
|
|
|
}
|
2019-07-08 13:25:28 +00:00
|
|
|
.radio-guide input[type="radio"]:checked + label {
|
2019-07-25 17:01:53 +00:00
|
|
|
background-color: $pedagogy-orange;
|
2019-07-07 16:29:31 +00:00
|
|
|
}
|
2019-07-08 13:25:28 +00:00
|
|
|
.radio-guide input[type="checkbox"]:checked + label {
|
2019-07-25 17:01:53 +00:00
|
|
|
background-color: $pedagogy-orange;
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
|
|
|
.radio-guide label:hover {
|
2019-07-25 17:01:53 +00:00
|
|
|
background-color: $pedagogy-hover-blue;
|
2019-07-07 16:29:31 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-07 14:33:03 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
#uv_detail {
|
|
|
|
color: #062f38;
|
2019-07-07 17:07:19 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.uv-quick-info-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 20% 20% 20% 20% auto;
|
2019-07-07 20:14:46 +00:00
|
|
|
grid-template-rows: auto auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:
|
|
|
|
"hours-cm hours-td hours-tp hours-te hours-the"
|
|
|
|
"department credit-type semester . ." ;
|
2019-07-07 17:07:19 +00:00
|
|
|
}
|
2019-07-07 14:33:03 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.department {
|
|
|
|
grid-area: department;
|
2019-07-07 14:33:03 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.credit-type {
|
|
|
|
grid-area: credit-type;
|
|
|
|
}
|
2019-07-07 14:33:03 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.semester {
|
|
|
|
grid-area: semester;
|
|
|
|
}
|
2019-07-07 14:33:03 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.hours-cm {
|
|
|
|
grid-area: hours-cm;
|
|
|
|
}
|
2019-07-03 19:19:56 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.hours-td {
|
|
|
|
grid-area: hours-td;
|
2019-07-06 00:30:47 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.hours-tp {
|
|
|
|
grid-area: hours-tp;
|
|
|
|
}
|
2019-07-03 19:19:56 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.hours-te {
|
|
|
|
grid-area: hours-te;
|
|
|
|
}
|
2019-07-03 19:19:56 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.hours-the {
|
|
|
|
grid-area: hours-the;
|
|
|
|
}
|
2019-07-08 00:54:49 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
#leave_comment {
|
|
|
|
.leave-comment-grid-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 270px auto;
|
|
|
|
grid-template-rows: 100%;
|
|
|
|
grid-template-areas: "stars comment";
|
2019-07-08 00:54:49 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
@media screen and (max-width: $large-devices){
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
grid-template-rows: auto auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:
|
|
|
|
"stars"
|
|
|
|
"comment";
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
2019-07-06 01:54:46 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.ui-accordion-content {
|
|
|
|
background-color: $white-color;
|
|
|
|
border-color: $pedagogy-orange;
|
|
|
|
border-right: none;
|
|
|
|
}
|
2019-07-06 01:54:46 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.form-stars {
|
|
|
|
grid-area: stars;
|
2019-07-06 00:16:04 +00:00
|
|
|
}
|
2019-07-08 00:54:49 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.form-comment {
|
|
|
|
grid-area: comment;
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
2019-07-06 00:16:04 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.ui-accordion-header {
|
|
|
|
background-color: $pedagogy-orange;
|
|
|
|
color: $pedagogy-white-text;
|
|
|
|
clip-path: polygon(0 0%, 0 100%, 30% 100%, 33% 0);
|
2019-07-08 07:47:54 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
@media screen and (max-width: $large-devices){
|
|
|
|
clip-path: none;
|
|
|
|
}
|
|
|
|
}
|
2019-07-08 00:54:49 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.ui-accordion-header-icon {
|
|
|
|
color: $pedagogy-white-text;
|
|
|
|
margin-right: 10px;
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.input-stars {
|
|
|
|
margin-top: 20px;
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
input[type="submit"] {
|
|
|
|
float: right;
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
2019-07-06 00:30:47 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.uv-details-container {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 150px 100px auto;
|
|
|
|
grid-template-rows: 156px 1fr;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:
|
|
|
|
"grade grade-stars uv-infos"
|
|
|
|
". . uv-infos";
|
2019-07-06 00:16:04 +00:00
|
|
|
|
2019-07-08 00:54:49 +00:00
|
|
|
@media screen and (max-width: $large-devices){
|
2019-07-08 13:25:28 +00:00
|
|
|
grid-template-columns: 50% 50%;
|
|
|
|
grid-template-rows: auto auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:
|
|
|
|
"grade grade-stars"
|
|
|
|
"uv-infos uv-infos";
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
2019-07-06 00:16:04 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.grade {
|
|
|
|
grid-area: grade;
|
|
|
|
color: $pedagogy-white-text;
|
|
|
|
background-color: $pedagogy-blue;
|
|
|
|
padding-right: 10px;
|
2019-07-07 14:33:03 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
> p {
|
|
|
|
text-align: right;
|
|
|
|
font-weight: bold;
|
2019-07-06 00:16:04 +00:00
|
|
|
}
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
2019-07-06 00:16:04 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.grade-stars {
|
|
|
|
grid-area: grade-stars;
|
|
|
|
color: $pedagogy-white-text;
|
|
|
|
background-color: $pedagogy-blue;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2019-07-07 16:51:36 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.uv-infos {
|
|
|
|
grid-area: uv-infos;
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2019-07-07 16:51:36 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.comment-container {
|
|
|
|
display: grid;
|
2019-07-08 21:16:53 +00:00
|
|
|
grid-template-columns: 300px auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-rows: auto auto auto;
|
|
|
|
grid-template-areas:
|
|
|
|
"grade-block comment"
|
|
|
|
"grade-block info"
|
|
|
|
"comment-end-bar comment-end-bar";
|
2019-07-08 13:25:28 +00:00
|
|
|
margin-bottom: 30px;
|
|
|
|
margin-top: 10px;
|
2019-07-06 00:16:04 +00:00
|
|
|
|
2019-07-08 00:54:49 +00:00
|
|
|
@media screen and (max-width: $large-devices){
|
|
|
|
grid-template-columns: auto;
|
2019-07-08 13:25:28 +00:00
|
|
|
grid-template-rows: auto auto auto auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:
|
|
|
|
"grade-block"
|
|
|
|
"comment"
|
|
|
|
"info"
|
|
|
|
"comment-end-bar"
|
2019-07-06 00:16:04 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.grade-block {
|
|
|
|
grid-area: grade-block;
|
|
|
|
width: 300px;
|
|
|
|
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 150px 150px;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-rows: 156px auto;
|
|
|
|
grid-template-areas:
|
|
|
|
"grade-type grade-stars"
|
|
|
|
"grade-extension grade-extension";
|
2019-07-08 13:25:28 +00:00
|
|
|
grid-gap: 15px;
|
|
|
|
|
2019-07-09 12:43:46 +00:00
|
|
|
clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 30px, 270px 0);
|
|
|
|
align-items: start;
|
2019-07-08 13:25:28 +00:00
|
|
|
|
|
|
|
background-color: $pedagogy-blue;
|
2019-07-08 00:54:49 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: $large-devices){
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-columns: 50% auto;
|
2019-07-08 13:25:28 +00:00
|
|
|
grid-template-rows: auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:"grade-type grade-stars";
|
2019-07-08 13:25:28 +00:00
|
|
|
width: auto;
|
2019-07-08 00:54:49 +00:00
|
|
|
clip-path: none;
|
2019-07-09 12:43:46 +00:00
|
|
|
align-content: space-evenly;
|
|
|
|
align-items: end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grade-extension {
|
|
|
|
grid-area: grade-extension;
|
|
|
|
background-color: $pedagogy-blue;
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
2019-07-06 00:16:04 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.grade-type {
|
|
|
|
grid-area: grade-type;
|
|
|
|
|
|
|
|
> p {
|
|
|
|
color: $pedagogy-white-text;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: right;
|
|
|
|
}
|
2019-07-06 00:16:04 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.grade-stars {
|
|
|
|
grid-area: grade-stars;
|
|
|
|
}
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
2019-07-07 14:33:03 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.comment {
|
|
|
|
grid-area: comment;
|
|
|
|
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto;
|
|
|
|
grid-template-rows: auto auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:
|
|
|
|
"anchor"
|
|
|
|
"markdown";
|
2019-07-08 00:54:49 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: $large-devices){
|
2019-07-08 13:25:28 +00:00
|
|
|
border-left: solid;
|
|
|
|
border-right: solid;
|
|
|
|
border-color: $pedagogy-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.anchor {
|
|
|
|
grid-area: anchor;
|
|
|
|
text-align: right;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.markdown {
|
|
|
|
grid-area: markdown;
|
2019-07-08 21:16:53 +00:00
|
|
|
|
2019-07-09 12:43:46 +00:00
|
|
|
min-height: 139px;
|
2019-07-08 13:25:28 +00:00
|
|
|
margin-top: 0px;
|
|
|
|
margin-right: 0px;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: justify;
|
2019-07-09 12:43:46 +00:00
|
|
|
overflow: auto;
|
2019-07-07 14:33:03 +00:00
|
|
|
}
|
2019-07-06 00:16:04 +00:00
|
|
|
}
|
2019-07-03 19:19:56 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.info {
|
|
|
|
grid-area: info;
|
2019-07-09 13:00:03 +00:00
|
|
|
padding-bottom: 10px;
|
2019-07-09 12:43:46 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
@media screen and (max-width: $large-devices){
|
|
|
|
border-left: solid;
|
|
|
|
border-right: solid;
|
|
|
|
border-color: $pedagogy-blue;
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
2019-07-06 00:30:47 +00:00
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.status-reported {
|
|
|
|
color: red;
|
|
|
|
float: left;
|
|
|
|
padding-left: 10px;
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
|
|
|
|
2019-07-08 13:25:28 +00:00
|
|
|
.actions {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-end-bar {
|
|
|
|
grid-area: comment-end-bar;
|
|
|
|
|
|
|
|
display: grid;
|
2019-07-09 14:03:47 +00:00
|
|
|
grid-template-columns: 33% auto auto;
|
2019-07-08 13:25:28 +00:00
|
|
|
grid-template-rows: 2.5em;
|
2019-07-09 14:03:47 +00:00
|
|
|
grid-template-areas: "author date report";
|
2019-07-08 13:25:28 +00:00
|
|
|
|
|
|
|
background-color: $pedagogy-blue;
|
2019-07-09 13:00:03 +00:00
|
|
|
margin-top: -1px;
|
2019-07-08 13:25:28 +00:00
|
|
|
|
2019-07-08 00:54:49 +00:00
|
|
|
@media screen and (max-width: $large-devices){
|
2019-07-08 13:25:28 +00:00
|
|
|
grid-template-columns: auto;
|
2019-07-09 14:03:47 +00:00
|
|
|
grid-template-rows: auto auto auto;
|
2019-07-09 12:43:46 +00:00
|
|
|
grid-template-areas:
|
2019-07-09 14:03:47 +00:00
|
|
|
"report"
|
2019-07-09 12:43:46 +00:00
|
|
|
"date"
|
2019-07-09 14:03:47 +00:00
|
|
|
"author";
|
2019-07-09 13:00:03 +00:00
|
|
|
margin-top: 0px;
|
2019-07-09 14:03:47 +00:00
|
|
|
text-align: center;
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
|
|
|
|
2019-07-09 14:03:47 +00:00
|
|
|
.author {
|
|
|
|
grid-area: author;
|
|
|
|
|
|
|
|
padding-top: 6px;
|
2019-07-08 13:25:28 +00:00
|
|
|
padding-left: 20px;
|
2019-07-09 14:03:47 +00:00
|
|
|
|
|
|
|
background-color: $pedagogy-orange;
|
2019-07-09 14:33:06 +00:00
|
|
|
clip-path: polygon(0 10px, 0 100%, 350px 200%, 300px 10px);
|
2019-07-08 13:25:28 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: $large-devices){
|
|
|
|
clip-path: none;
|
2019-07-09 14:03:47 +00:00
|
|
|
padding: 0px;
|
|
|
|
padding-bottom: 7px;
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
|
|
|
|
2019-07-09 14:03:47 +00:00
|
|
|
a {
|
|
|
|
color: $pedagogy-white-text;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: $pedagogy-hover-blue;
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.date {
|
|
|
|
grid-area: date;
|
|
|
|
color: $pedagogy-white-text;
|
|
|
|
|
|
|
|
@media screen and (max-width: $large-devices){
|
2019-07-09 14:03:47 +00:00
|
|
|
padding-bottom: 7px;
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-09 14:03:47 +00:00
|
|
|
.report {
|
|
|
|
grid-area: report;
|
2019-07-08 13:25:28 +00:00
|
|
|
justify-self: right;
|
|
|
|
padding-right: 30px;
|
2019-07-08 21:16:53 +00:00
|
|
|
padding-left: 30px;
|
2019-07-08 13:25:28 +00:00
|
|
|
|
|
|
|
a {
|
2019-07-09 14:03:47 +00:00
|
|
|
color: $pedagogy-white-text;
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2019-07-09 14:03:47 +00:00
|
|
|
color: $pedagogy-hover-blue;
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $large-devices){
|
|
|
|
text-align: center;
|
|
|
|
justify-self: inherit;
|
2019-07-09 14:03:47 +00:00
|
|
|
padding-bottom: 7px;
|
|
|
|
background-color: $white-color;
|
2019-07-08 21:16:53 +00:00
|
|
|
|
2019-07-09 14:03:47 +00:00
|
|
|
border-left: solid;
|
|
|
|
border-right: solid;
|
|
|
|
border-color: $pedagogy-blue;
|
2019-07-08 21:16:53 +00:00
|
|
|
|
2019-07-09 14:03:47 +00:00
|
|
|
a {
|
|
|
|
color: $black-color;
|
2019-07-08 21:16:53 +00:00
|
|
|
}
|
2019-07-08 13:25:28 +00:00
|
|
|
}
|
2019-07-08 00:54:49 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-03 19:19:56 +00:00
|
|
|
}
|
2019-07-05 23:16:09 +00:00
|
|
|
}
|
2019-07-03 19:19:56 +00:00
|
|
|
}
|