1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-01-26 18:48:15 +02:00
focalboard/website/site/static/css/partials/template-picker.css
Asaad Mahmood bf1c1a82b1
Focalboard Website Update V2 (#4391)
* Updating focalboard website

* Updating video

* Updating ui

* Updating header

* Updating board views and adding loop

* Updating docs pages

* Updating blog

* Updating UI

* Updating downloads page

* Updating teams item

* Updating downloads page

* Updating UI

* Updating docs

* Updating UI

* Updating lucky orange

* Updating link

* Updating intro text

* Updating css version

* Minor UI Fixes

* Updating css

* Updating css version

* Updating css version
2023-01-25 07:37:34 +05:00

72 lines
1.3 KiB
CSS

/* Template Picker */
.template-picker-container {
text-align: center;
margin-top: 180px;
position: relative;
}
.template-picker {
position: relative;
z-index: 5;
display: flex;
overflow: hidden;
margin-top: 48px;
border-radius: 12px;
background-color: white;
box-shadow: var(--shadow-image);
}
.template-picker__sidebar {
background: #F7F7F8;
flex: 0 0 292px;
text-align: left;
padding: 16px;
}
.template-picker__preview {
height: 740px;
}
.template-picker-item {
margin-bottom: 8px;
cursor: pointer;
font-size: 15px;
font-weight: 600;
opacity: 0.72;
gap: 10px;
padding: 0 10px;
height: 40px;
display: flex;
align-items: center;
border-radius: 4px;
transition: var(--transition-btn);
}
.template-picker-item:hover {
background-color: rgba(0, 0, 0, 0.06);
}
.template-picker-item.active {
background-color: rgba(var(--denimBtnRgb), 0.08);
color: var(--denimBtn);
}
@media (max-width: 1280px) {
.template-picker {
display: block;
}
.template-picker__sidebar {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0 40px;
background-color: transparent;
}
.template-picker__preview {
height: auto;
}
}