Files
WatchIt/WatchIt.Website/WatchIt.Website/wwwroot/app.css

99 lines
1.8 KiB
CSS
Raw Normal View History

2024-07-03 22:18:32 +02:00
body, html {
background-color: transparent;
height: 100%;
margin: 0;
padding: 0;
color: lightgray;
font-family: "PT Sans";
2024-04-27 22:36:16 +02:00
}
2024-07-03 22:18:32 +02:00
.logo {
font-family: "Belanosima";
2024-07-03 22:18:32 +02:00
text-decoration: none;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
2024-04-27 22:36:16 +02:00
}
2024-09-19 13:36:01 +02:00
.mt-9 {
margin-top: 9rem !important;
}
.panel-header {
2024-07-03 22:18:32 +02:00
background-color: rgba(0, 0, 0, 0.8);
}
.panel-regular {
background-color: rgba(0, 0, 0, 0.6);
}
2024-09-19 22:58:39 +02:00
.panel-yellow {
background-color: rgba(255, 184, 58, 0.6);
}
.panel {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
2024-07-03 22:18:32 +02:00
backdrop-filter: blur(25px);
2024-04-27 22:36:16 +02:00
}
2024-07-03 22:18:32 +02:00
.main-button {
--r:10px;
--b:2px;
2024-03-15 15:35:04 +01:00
2024-07-03 22:18:32 +02:00
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
padding: 5px 10px;
2024-03-15 15:35:04 +01:00
2024-07-03 22:18:32 +02:00
border-radius: var(--r);
display: block;
align-items: self-end;
position: relative;
z-index:0;
text-decoration: none;
transition: 0.3s;
font-family: Belanosima;
2024-03-15 15:35:04 +01:00
}
2024-07-03 22:18:32 +02:00
.main-button::before {
content:"";
position:absolute;
z-index:-1;
inset: 0;
border: var(--b) solid transparent;
border-radius: var(--r);
background: inherit;
background-origin: border-box;
background-clip: border-box;
-webkit-mask:
linear-gradient(#fff 0 0) padding-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
-webkit-mask-repeat: no-repeat;
2024-03-15 15:35:04 +01:00
}
2024-07-03 22:18:32 +02:00
.main-button:hover {
color: #fff;
-webkit-text-fill-color: #fff;
-webkit-background-clip: border-box;
background-clip: border-box;
2024-03-15 15:35:04 +01:00
}
2024-07-03 22:18:32 +02:00
.main-button:hover::before {
-webkit-mask:none;
}
.dropdown-menu-left {
right: auto;
left: 0;
2024-09-17 20:32:22 +02:00
}
.btn-stretch-x {
width: 100%;
}
.w-100 {
width: 100%;
2024-07-03 22:18:32 +02:00
}