mirror of
https://github.com/nextcloud/passman.git
synced 2026-01-05 23:27:04 +08:00
Add scss file for public share page
This commit is contained in:
parent
9f779087ca
commit
ef01ef0d1a
1 changed files with 75 additions and 0 deletions
75
sass/public-page.scss
Normal file
75
sass/public-page.scss
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
@import 'variables';
|
||||
@import 'mixins';
|
||||
header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#content-wrapper {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.credential_container{
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
padding: 20px;
|
||||
background: #f8f8f8;
|
||||
border: 1px solid #c9c9c9;
|
||||
@include border-radius(5px);
|
||||
.text{
|
||||
text-align: center;
|
||||
}
|
||||
h2{
|
||||
font-weight: bold;
|
||||
}
|
||||
button, .text{
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
i{
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.credential_field {
|
||||
overflow: hidden;
|
||||
.cell, .value {
|
||||
float: left;
|
||||
}
|
||||
.tools {
|
||||
margin-left: 10px;
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
.cell {
|
||||
cursor: pointer;
|
||||
margin-right: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
table{
|
||||
white-space: normal;
|
||||
td:first-child{
|
||||
min-width: 110px;
|
||||
}
|
||||
td{
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.tags {
|
||||
.tag {
|
||||
background-color: rgba(240, 240, 240, .9);
|
||||
padding: 4px;
|
||||
font-size: 12px;
|
||||
margin-right: 3px;
|
||||
@include border-radius(5px);
|
||||
}
|
||||
.tag:last-child {
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
.footer{
|
||||
font-size: 10px;
|
||||
position: relative;
|
||||
bottom: -20px;
|
||||
text-align: center;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue