mirror of
https://github.com/documize/community.git
synced 2025-08-05 05:25:27 +02:00
moved emberjs to gui folder
This commit is contained in:
parent
6a18d18f91
commit
dc49dbbeff
999 changed files with 677 additions and 651 deletions
68
gui/app/styles/widget/widget-card.scss
Normal file
68
gui/app/styles/widget/widget-card.scss
Normal file
|
@ -0,0 +1,68 @@
|
|||
.base-card {
|
||||
border: 1px solid $color-border;
|
||||
display: inline-block;
|
||||
border-radius : 3px;
|
||||
background-color: $color-white;
|
||||
|
||||
&:hover {
|
||||
@extend .z-depth-half;
|
||||
background-color: $color-card-active;
|
||||
border-color: $color-card-active;
|
||||
transition: 0.2s all ease;
|
||||
}
|
||||
}
|
||||
|
||||
.content-card {
|
||||
@extend .base-card;
|
||||
margin: 0 12px 12px 0;
|
||||
padding: 20px 20px;
|
||||
width: 200px;
|
||||
height: 250px;
|
||||
position: relative;
|
||||
|
||||
.title {
|
||||
font-size: 1rem;
|
||||
font-family: "open_sanssemibold";
|
||||
height: 3rem;
|
||||
overflow: hidden;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.snippet {
|
||||
font-size: 0.8rem;
|
||||
line-height: 1.1rem;
|
||||
height: 2rem;
|
||||
overflow: hidden;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
.stacked-card {
|
||||
@extend .base-card;
|
||||
padding: 20px 20px;
|
||||
position: relative;
|
||||
|
||||
.title {
|
||||
font-size: 1rem;
|
||||
font-family: "open_sanssemibold";
|
||||
margin-bottom: 0.75rem;
|
||||
color: $color-off-black;
|
||||
}
|
||||
|
||||
.snippet {
|
||||
font-size: 0.8rem;
|
||||
line-height: 1.1rem;
|
||||
margin-bottom: 0.75rem;
|
||||
color: $color-stroke;
|
||||
}
|
||||
}
|
||||
|
||||
.cards-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
> li {
|
||||
list-type: none;
|
||||
float: left;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue