Commit ee3f568c1c736a8d451ec3e44b38d39678f4ccd4
1 parent
633ff79c
123
Showing
1 changed file
with
22 additions
and
0 deletions
Show diff stats
frontend/web/css/style.css
... | ... | @@ -1801,6 +1801,28 @@ p.right{text-align: right;} |
1801 | 1801 | margin: 0 auto; |
1802 | 1802 | font-family: 'Lato-Medium'; |
1803 | 1803 | } |
1804 | +.add_comment .title { | |
1805 | + text-align: center; | |
1806 | + text-transform: uppercase; | |
1807 | + font-size: 15px; | |
1808 | + color: #000000; | |
1809 | + font-family: 'Lato-Light'; | |
1810 | + font-weight: 600; | |
1811 | + padding: 14px; | |
1812 | +} | |
1813 | +.close_comm { | |
1814 | + position: absolute; | |
1815 | + top: 16px; | |
1816 | + right: 0; | |
1817 | + width: 27px; | |
1818 | + height: 27px; | |
1819 | + background-image: url(../images/close.png); | |
1820 | + transition: 0.1s; | |
1821 | + cursor: pointer; | |
1822 | +} | |
1823 | +.close_comm:hover { | |
1824 | + background-image: url(../images/close_hover.png); | |
1825 | +} | |
1804 | 1826 | |
1805 | 1827 | /**/ |
1806 | 1828 | @media (min-width: 1200px){ | ... | ... |