MyTube/public/css/base.css

72 lines
863 B
CSS
Raw Permalink Normal View History

2021-01-06 17:15:05 +00:00
.bg-grey {
background-color: #ccc;
}
.navbar {
margin-bottom: 50px;
2021-01-06 23:43:51 +00:00
}
.hidden {
height: 1px;
width: 1px;
position: absolute;
top: -10px;
left: -1px;
2021-01-07 23:12:05 +00:00
}
.avatar {
height: 30px;
}
2021-01-08 12:37:45 +00:00
.container {
position: relative;
}
.customNavbar {
margin-right: auto;
2021-01-08 17:17:16 +00:00
}
2021-01-23 19:09:00 +00:00
@media only screen and (max-width: 990px) {
.avatar-dropdown {
left: 0;
right: auto;
text-align: left;
}
}
2021-01-08 17:17:16 +00:00
.no-content {
margin-left: 3%;
}
.deleteToggle:after {
display: none;
}
.deleteConfirm {
text-align: center;
padding: 1vw;
font-size: 1vw;
min-width: 14vw;
}
.deleteButton {
color: red;
}
.no-wrap {
white-space: nowrap;
2021-01-17 22:33:04 +00:00
}
.btn-link.deleteToggle {
2021-01-17 22:33:04 +00:00
color: red;
}
2021-01-18 15:35:11 +00:00
.btn:disabled {
color: dimgrey;
2021-01-18 15:35:11 +00:00
}
a.btn.disabled {
2021-01-17 22:33:04 +00:00
color: dimgrey;
2021-01-18 15:35:11 +00:00
pointer-events: none;
cursor: pointer;
2021-01-06 17:15:05 +00:00
}