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

99 lines
1.5 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;
}
table {
width: 100%;
}
.outter-table > tbody > tr > td {
padding: 0 0 0 10px;
2020-05-05 22:59:20 +02:00
border-bottom: 2px solid #175DDC;
height: 40px;
}
.outter-table > tbody > tr > td:last-child {
padding-right: 10px;
}
.inner-table td {
padding: 0 10px 0 0;
}
.inner-table td:last-child {
padding: 0;
}
.inner-table td button {
margin-left: 5px;
}
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) {
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;
}
button:not(.link):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 {
background: none;
padding: 5px 15px;
2020-05-05 22:59:20 +02:00
color: #175DDC;
border: 0;
}
button.link:hover {
cursor: pointer;
background: none;
text-decoration: underline;
}
2017-09-19 18:30:19 +02:00
body[class*='lang-en'] .add-buttons {
width: 175px;
}
@media (min-width: 768px) {
2017-09-19 18:30:19 +02:00
body[class*='lang-en'] .add-buttons {
width: 320px;
}
}
@media (print) {
body {
display: none;
}
}