1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

feat(global): add templates support ('apps') (#154)

This commit is contained in:
Anthony Lapenna 2016-08-23 18:09:14 +12:00 committed by GitHub
parent faccf2a651
commit 1c8aa35479
15 changed files with 366 additions and 13 deletions

View file

@ -210,3 +210,48 @@ input[type="radio"] {
.btn-ico {
margin-right: 5px;
}
.template-list {
display: flex;
flex-wrap: wrap;
}
.container-template {
font-size: 1em;
width: 256px;
height: 128px;
margin: 10px;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 10px;
cursor: pointer;
border: 2px solid #f6f6f6;
color: #30426a;
}
.container-template--selected {
background-color: #f6f6f6;
color: #2d3e63;
}
.container-template:hover {
background-color: #f6f6f6;
color: #2d3e63;
}
.container-template .logo {
max-width: 48px;
max-height: 48px;
}
.container-template .title {
text-align: center;
}
.container-template .comment {
text-align: center;
font-size: 0.8em;
}