comparison StoneWebViewer/Resources/Styles/_exitButton.scss @ 1495:fb74ed5d8c22

initial commit of the Stone Web viewer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 25 Jun 2020 16:51:10 +0200
parents
children
comparison
equal deleted inserted replaced
1494:5a3ef478deb6 1495:fb74ed5d8c22
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 }