comparison Applications/StoneWebViewer/Resources/Styles/_exitButton.scss @ 1538:d1806b4e4839

moving OrthancStone/Samples/ as Applications/Samples/
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 11 Aug 2020 13:24:38 +0200
parents StoneWebViewer/Resources/Styles/_exitButton.scss@fb74ed5d8c22
children
comparison
equal deleted inserted replaced
1537:de8cf5859e84 1538:d1806b4e4839
1 .wvExitButton {
2 margin-left: 1rem;
3 margin-top: .25rem;
4 font-size: 1.25em;
5 color: white;
6 opacity: .66;
7
8 transition: .3s opacity ease;
9 background-color: inherit;
10 border: none;
11 text-decoration: none;
12 text-align: left;
13 padding: 0;
14 cursor: pointer;
15 font-family: inherit;
16 line-height: inherit;
17
18 &:hover, &:focus {
19 opacity: 1;
20 outline: 0;
21 }
22 }
23
24 .wvExitButton__text {
25 // Align text with glyph-icon.
26 position: relative;
27 top: -1px;
28 }