www/styles/title.module.css

30 lines
666 B
CSS
Raw Normal View History

2021-12-08 03:38:31 +00:00
.container {
text-align: center;
2022-04-27 09:10:49 +00:00
margin: auto;
2022-04-30 13:56:18 +00:00
background-color: var(--main-background-color);
}
.container .title {
2021-12-08 03:38:31 +00:00
border-bottom: 1px solid #FFFFFF;
2022-04-30 13:56:18 +00:00
max-width: 95%;
margin: auto;
2021-12-08 03:38:31 +00:00
}
.nav {
2022-04-27 09:10:49 +00:00
padding: 0.25rem 0.75rem;
2021-12-08 03:38:31 +00:00
font-size: 1.5rem;
2022-04-27 09:10:49 +00:00
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
2021-12-08 03:38:31 +00:00
position: fixed;
bottom: 0;
z-index: 1000;
margin: 0;
2022-10-05 03:41:59 +00:00
height: 2.75rem;
max-height: 2.75rem;
min-height: 2.75rem;
min-width: 100%;
width: 100%;
2021-12-08 03:38:31 +00:00
background: linear-gradient(to bottom right, #1a3a15, #09351b) no-repeat center center fixed;
2022-10-05 03:41:59 +00:00
overflow-y: hidden;
overflow-x: auto;
white-space: nowrap;
2021-12-08 03:38:31 +00:00
}