portal-oddajanje-solar/static/css/history.css

207 lines
4.7 KiB
CSS
Raw Normal View History

2021-11-16 17:45:20 +00:00
@import url(https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,900,900italic,300italic,300,100italic,100);
html {
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: #46535B; }
body {
font-size: 16px;
padding: 0;
margin: 0; }
h1 {
font-size: 30px;
font-style: normal;
font-weight: 300;
line-height: 35px;
color: #006CB7; }
h2 {
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 21px;
text-transform: uppercase;
color: #006CB7; }
h3 {
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 21px; }
em {
font-weight: 300; }
.btn {
border: none;
line-height: 2.5rem;
padding: 0 2.5rem;
color: white;
background: #006CB7;
border-radius: 20px;
font-size: 1.125rem;
font-weight: 400;
cursor: pointer;
transition: opacity 0.3s ease-out; }
.btn:hover {
opacity: 0.8; }
2021-11-26 12:50:32 +00:00
.btn:disabled {
cursor: default;
opacity: 0.5; }
2021-11-16 17:45:20 +00:00
.panel {
background: #F5F5F5;
padding: 40px 60px;
2021-11-26 12:50:32 +00:00
border-radius: 20px;
max-width: 30rem; }
2021-11-16 17:45:20 +00:00
.panel .panel-logo {
position: absolute;
top: -60px;
left: 0;
right: 0;
display: block;
margin: auto;
background: #F5F5F5;
padding: 20px 30px;
width: 100px;
border-radius: 100%;
text-align: center; }
.line {
background: #C4C4C4;
height: 2px;
width: 200px;
margin: auto; }
.a-right {
display: block;
text-align: right;
font-size: 10px;
text-decoration: none;
color: #006CB7;
text-transform: uppercase; }
.alert {
position: relative;
2021-11-26 12:50:32 +00:00
color: #8D3D3D;
margin-bottom: 2rem; }
2021-12-15 20:23:26 +00:00
.alert.alert-success {
color: #88B52F; }
2021-11-16 17:45:20 +00:00
.alert img {
position: relative;
top: 0.25rem;
width: 1.8rem; }
.alert p {
position: absolute;
2021-11-26 12:50:32 +00:00
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 2rem;
2021-11-16 17:45:20 +00:00
left: 3rem;
top: 0;
margin: 0;
text-transform: uppercase; }
.submit-alert {
background: white;
border: 2px solid #B7DB70;
box-sizing: border-box;
border-radius: 8px; }
.submit-alert .btn {
margin-top: 0.5rem;
background: #88B52F;
border-radius: 4px; }
.history-item {
background: white;
2021-11-26 12:50:32 +00:00
min-height: 2.875rem;
max-height: 2.875rem;
2021-11-16 17:45:20 +00:00
padding: 1rem 1.5rem;
2021-11-26 12:50:32 +00:00
position: relative;
2021-12-13 20:01:28 +00:00
transition: max-height 1s ease-out;
2022-01-04 17:36:42 +00:00
cursor: pointer;
overflow: hidden; }
2021-12-13 20:01:28 +00:00
.history-item .history-item-chevron {
position: absolute;
bottom: 1rem;
right: 1rem; }
2021-11-16 17:45:20 +00:00
.history-item .history-item-date {
text-transform: uppercase;
display: inline-block;
color: #848C90;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem; }
.history-item .history-item-uploader {
display: inline-block;
padding-left: 1rem;
margin-left: 1rem;
border-left: 1px solid #848C90;
color: #848C90;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem; }
.history-item .history-item-filecount {
2021-12-04 17:49:20 +00:00
position: absolute;
top: 1rem;
right: 1rem;
2021-11-16 17:45:20 +00:00
color: #006CB7;
line-height: 1rem;
font-weight: 400;
font-size: 0.875rem; }
.history-item .history-item-desc {
position: absolute;
bottom: 1rem;
font-style: normal;
font-weight: normal;
font-size: 1rem;
line-height: 1.25rem;
color: #46535B; }
2021-11-26 12:50:32 +00:00
.history-item .history-item-desc-full {
2021-12-04 17:49:20 +00:00
display: none;
margin-top: 1rem; }
.history-item .history-item-files-full {
2021-11-26 12:50:32 +00:00
display: none; }
2021-12-04 17:49:20 +00:00
.history-item .history-item-files-full .file-item {
position: relative;
height: 3.125rem;
border-bottom: 1px solid #848C90; }
2022-02-12 15:38:34 +00:00
.history-item .history-item-files-full .file-item:last-child {
border-bottom: none; }
2021-12-04 17:49:20 +00:00
.history-item .history-item-files-full .file-item .file-icon {
position: absolute;
width: 1.5rem;
height: 1.5rem;
left: 0;
top: 1rem; }
.history-item .history-item-files-full .file-item .file-name {
position: absolute;
left: 3rem;
2021-12-15 20:23:26 +00:00
top: 1rem;
color: #46535B;
text-decoration: none;
cursor: pointer; }
.history-item .history-item-files-full .file-item .file-name:hover {
text-decoration: underline; }
2021-11-26 12:50:32 +00:00
.history-item.open {
2021-12-13 20:01:28 +00:00
max-height: 20rem; }
2021-11-26 12:50:32 +00:00
.history-item.open .history-item-date {
display: block; }
.history-item.open .history-item-uploader {
display: block;
padding-left: 0;
margin-left: 0;
border-left: none; }
.history-item.open .history-item-desc {
display: none; }
.history-item.open .history-item-desc-full {
display: block; }
2021-12-04 17:49:20 +00:00
.history-item.open .history-item-files-full {
display: block; }
2021-12-13 20:01:28 +00:00
.history-item.open .history-item-chevron {
transform: rotate(180deg); }
2021-11-16 17:45:20 +00:00
/*# sourceMappingURL=history.css.map */