bitwarden-estensione-browser/src/notification/bar.scss

107 lines
1.6 KiB
SCSS
Raw Normal View History

body {
background-color: #ffffff;
padding: 0;
margin: 0;
height: 100%;
font-size: 14px;
line-height: 16px;
color: #333333;
2016-12-31 03:03:34 +01:00
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
2021-09-18 22:37:53 +02:00
.outer-wrapper {
padding: 0 10px;
border-bottom: 2px solid #175ddc;
display: grid;
grid-template-columns: 1fr auto 1fr;
column-gap: 10px;
grid-column-gap: 10px;
box-sizing: border-box;
height: 42px;
}
2021-09-18 22:37:53 +02:00
.outer-wrapper > * {
align-self: center;
}
2021-09-18 22:37:53 +02:00
.inner-wrapper {
display: grid;
grid-template-columns: 2fr 1fr;
column-gap: 10px;
grid-column-gap: 10px;
}
2021-09-18 22:37:53 +02:00
#content .change-buttons {
justify-self: end;
}
2021-09-18 22:37:53 +02:00
.wrapper > *, .inner-wrapper > * {
align-self: center;
}
img {
border: 0;
margin: 0;
padding: 0;
}
#logo {
width: 24px;
height: 24px;
display: block;
}
#close {
2016-12-30 22:47:07 +01:00
width: 15px;
height: 15px;
display: block;
2016-12-30 22:47:07 +01:00
padding: 5px 0;
margin-right: 10px;
}
2016-12-30 22:47:07 +01:00
button:not(.link),
button:not(.neutral) {
2020-05-05 22:59:20 +02:00
background-color: #175DDC;
2016-12-30 22:47:07 +01:00
padding: 5px 15px;
border-radius: 3px;
color: #ffffff;
border: 0;
&:hover {
2016-12-30 22:47:07 +01:00
cursor: pointer;
2020-05-05 22:59:20 +02:00
background-color: #1751bd;
2016-12-30 22:47:07 +01:00
}
}
button.link,
button.neutral {
background: none;
padding: 5px 15px;
2020-05-05 22:59:20 +02:00
color: #175DDC;
border: 0;
&:hover {
cursor: pointer;
background: none;
text-decoration: underline;
}
}
2017-09-19 18:30:19 +02:00
body[class*='lang-en'] .add-buttons {
width: 175px;
2021-09-18 22:37:53 +02:00
text-align: right;
}
@media (min-width: 768px) {
2017-09-19 18:30:19 +02:00
body[class*='lang-en'] .add-buttons {
2021-09-19 00:09:41 +02:00
width: 420px;
}
}
@media (print) {
body {
display: none;
}
}