mirror of https://github.com/CIRCL/lookyloo
48 lines
953 B
CSS
48 lines
953 B
CSS
/* Capture button */
|
|
|
|
.new-capture-button {
|
|
width: 300px;
|
|
height: 60px;
|
|
font-size: 25px;
|
|
letter-spacing: 2.5px;
|
|
font-weight: 500;
|
|
color: #ffffff;
|
|
background-color: #0000ff;
|
|
border: 10px;
|
|
border-radius: 50px;
|
|
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
transition: all 0.3s ease 0s;
|
|
cursor: pointer;
|
|
outline: none;
|
|
padding-right: 15px;
|
|
padding-left: 15px;
|
|
padding-bottom: 20px;
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.new-capture-button:hover {
|
|
background-color: #007070;
|
|
box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
|
|
color: #fff;
|
|
transform: translateY(-7px);
|
|
}
|
|
|
|
/* CSS collapse thing */
|
|
[data-toggle="collapse"].collapsed .if-not-collapsed {
|
|
display: none;
|
|
}
|
|
|
|
[data-toggle="collapse"]:not(.collapsed) .if-collapsed {
|
|
display: none;
|
|
}
|
|
|
|
/* Ressource preview */
|
|
img.ressource_preview{
|
|
width:100%;
|
|
height:100%;
|
|
max-width:150px;
|
|
max-height:150px;
|
|
min-width:10px;
|
|
min-height:10px;
|
|
}
|