83 lines
1.3 KiB
CSS
83 lines
1.3 KiB
CSS
/* Basic reset */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.twake {
|
|
font-family: "Cal Sans";
|
|
font-weight: 400;
|
|
font-size: 28.07px;
|
|
line-height: 100%;
|
|
letter-spacing: 0%;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
padding: 0.2rem;
|
|
}
|
|
|
|
.calendar-text {
|
|
font-family: "Cal Sans";
|
|
padding: 0.2rem;
|
|
font-weight: 400;
|
|
font-size: 28.07px;
|
|
line-height: 100%;
|
|
letter-spacing: 0%;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
background: linear-gradient(180deg, #ffb73d, #f26c32);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
/* Optional for broader support */
|
|
background-clip: text;
|
|
color: transparent;
|
|
}
|
|
|
|
/* Menubar styles */
|
|
.menubar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.5rem;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
height: 7vh;
|
|
}
|
|
|
|
.menubar-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
padding: 0.5rem 1rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.nav-month {
|
|
padding-right: 2px;
|
|
padding-left: 2px;
|
|
gap: 38px;
|
|
}
|
|
|
|
.day-selector {
|
|
font-weight: 100;
|
|
font-size: small;
|
|
}
|
|
|
|
.search-bar {
|
|
width: 600;
|
|
height: 43.88999938964844;
|
|
top: 18px;
|
|
left: 887px;
|
|
}
|
|
|
|
.menu-tools {
|
|
width: 383.20001220703125;
|
|
height: 49;
|
|
top: 16px;
|
|
left: 1511px;
|
|
gap: 24px;
|
|
}
|