Flask-Project-Template/src/core/static/css/main.css

27 lines
436 B
CSS
Raw Normal View History

2019-11-01 22:54:25 +00:00
#bg {
position: fixed;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
z-index: -999;
2021-09-27 03:33:23 +00:00
object-fit: cover;
2019-11-01 22:54:25 +00:00
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: -999;
}
2021-09-27 03:33:23 +00:00
2019-11-01 22:54:25 +00:00
/* Other message text colors */
.errorTxt { color: rgb(170, 18, 18); }
.warningTxt { color: rgb(255, 168, 0); }
.successTxt { color: rgb(136, 204, 39); }