myco.systems/public/style.css

323 lines
6.1 KiB
CSS
Raw Normal View History

2023-10-14 23:14:04 -04:00
body {
2023-09-03 23:48:44 -04:00
overflow: hidden;
2023-10-14 23:14:04 -04:00
margin: 0;
2023-10-14 23:18:46 -04:00
font-family: "Open Sans", sans-serif;
2023-09-03 23:48:44 -04:00
}
.header-container {
color: white;
display: flex;
justify-content: space-between;
align-items: center;
2023-10-14 23:14:04 -04:00
position: fixed;
top: 1rem;
left: 1rem;
right: 1rem;
color: #fff;
z-index: 999;
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(5px);
padding: 1rem;
padding-top: 0.5rem;
padding-bottom: 0.75rem;
border-radius: 1rem;
2023-09-03 23:48:44 -04:00
}
.header-container h1 {
display: inline-block;
2023-10-14 23:18:46 -04:00
font-family: "Open Sans", sans-serif;
2023-10-14 23:14:04 -04:00
margin: 0;
padding: 0;
2023-09-03 23:48:44 -04:00
}
.header-container nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.header-container nav ul li {
display: inline-block;
margin-left: 20px;
}
.header-container nav ul li a {
text-decoration: none;
color: white;
font-weight: 800;
position: relative;
}
.header-container nav ul li a::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: white;
transform: scaleX(0);
transform-origin: bottom left;
transition: transform 0.3s ease;
}
.header-container nav ul li a:hover::before {
transform: scaleX(1);
}
.card-button {
position: fixed;
z-index: 99;
right: 1.9rem;
bottom: 1.9rem;
padding: 5px 30px;
background-color: #232222;
color: #e3e3e3;
border-radius: 5px;
font-size: 22px;
font-weight: 800;
cursor: pointer;
transition: transform 0.3s;
}
.card-button:hover {
animation: wobble 2s ease-in-out infinite;
}
@keyframes wobble {
0% {
transform: translateX(0);
}
15% {
transform: translateX(-2px) rotate(-2deg);
}
30% {
transform: translateX(2px) rotate(2deg);
}
45% {
transform: translateX(-1px) rotate(-1deg);
}
60% {
transform: translateX(1px) rotate(1deg);
}
75% {
transform: translateX(-0.5px) rotate(-0.5deg);
}
100% {
transform: translateX(0);
}
}
.card-out {
z-index: 99;
position: fixed;
right: -520px;
2023-10-14 23:14:04 -04:00
bottom: 15px;
2023-09-03 23:48:44 -04:00
transition: right 0.5s ease-in-out;
}
.card-in {
z-index: 99;
position: fixed;
2023-10-14 23:14:04 -04:00
right: 15px;
bottom: 15px;
2023-09-03 23:48:44 -04:00
transition: right 0.5s ease-in-out;
}
*,
*:before,
*:after {
outline: 0;
margin: 0;
padding: 0;
border: 0;
text-decoration: none;
box-sizing: border-box;
2023-10-14 23:18:46 -04:00
transition: color 300ms ease-out, background 300ms ease-out,
border 300ms ease-out, transform 300ms ease-out, opacity 300ms ease-out;
2023-09-03 23:48:44 -04:00
}
input,
textarea,
select,
options,
button {
font-family: inherit;
font-size: inherit;
line-height: inherit;
font-weight: normal;
background: none;
2023-10-14 23:14:04 -04:00
color: #b4a477;
2023-09-03 23:48:44 -04:00
}
.card-wrap {
overflow: hidden;
margin: 0 auto;
max-width: 520px;
background-color: #232323;
2023-10-14 23:14:04 -04:00
border-radius: 9px;
box-shadow: 7px 7px 0 #743c2f;
2023-09-03 23:48:44 -04:00
}
.tabs-wrap {
position: relative;
}
.tabs-nav {
display: flex;
flex-direction: row;
align-items: center;
justify-content: stretch;
position: relative;
overflow: hidden;
2023-10-14 23:14:04 -04:00
background-color: #232222;
2023-09-03 23:48:44 -04:00
}
.tabs-nav > button {
flex: 1;
display: block;
cursor: pointer;
text-align: center;
padding: 0.8em 0;
background-color: #232222;
font-weight: bold;
color: #733c2f;
}
.tabs-nav > button:hover {
background-color: #733c2f;
color: #232222;
}
.tabs-nav > button.active {
background-color: #733c2f;
border-color: #733c2f;
color: #232222;
}
.tabs-info {
min-height: 100px;
padding-top: 1em;
2023-10-14 23:14:04 -04:00
background-color: #232222;
2023-09-03 23:48:44 -04:00
font-weight: 700;
2023-10-14 23:14:04 -04:00
color: #733c2f;
2023-09-03 23:48:44 -04:00
}
.tabs-info .tabs-info-row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: stretch;
margin-bottom: 1em;
padding: 0 1em;
}
.tabs-info .tabs-info-qr > img {
display: block;
2023-10-14 23:14:04 -04:00
border-radius: 10px;
2023-09-03 23:48:44 -04:00
background-color: white;
padding: 5px;
}
.tabs-info .tabs-info-input {
display: flex;
flex-direction: row;
align-items: center;
justify-content: stretch;
2023-10-14 23:14:04 -04:00
background-color: #232323;
2023-09-03 23:48:44 -04:00
padding: 0.75em 1em;
2023-10-14 23:14:04 -04:00
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.4);
2023-09-03 23:48:44 -04:00
}
.tabs-info .tabs-info-input > span {
margin-right: 1em;
font-weight: bold;
2023-10-14 23:14:04 -04:00
color: #733c2f;
2023-09-03 23:48:44 -04:00
}
.tabs-info .tabs-info-input > input {
flex: 1;
margin-right: 1em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: bold;
2023-10-14 23:14:04 -04:00
color: #733c2f;
background-color: #232323;
2023-09-03 23:48:44 -04:00
border: none;
}
.tabs-info .tabs-info-input > button {
cursor: pointer;
font-weight: bold;
2023-10-14 23:14:04 -04:00
background-color: #232222;
color: #733c2f;
2023-09-03 23:48:44 -04:00
}
.tabs-info .tabs-info-details {
padding-left: 15px;
}
.tabs-info .tabs-info-title {
font-size: 2em;
}
.tabs-info .tabs-info-warn {
font-size: 1em;
}
2023-10-14 23:18:46 -04:00
.label-york,
.label-atl,
.label-cha,
.label-vint,
.label-san {
2023-10-14 23:14:04 -04:00
color: white;
background-color: rgba(0, 0, 0, 0.7);
padding: 4px;
border-radius: 4px;
font-size: 14px;
2023-10-15 16:28:14 -04:00
z-index: 99;
}
.ping1,
.ping2,
.ping3{position:absolute;z-index:88;left:50%;top:50%;display:block;content:"";-webkit-border-radius:116px;-moz-border-radius:116px;border-radius:116px;border:2px solid #ee4633;
transition:all 0.2s ease-in-out;
-webkit-transition:all 0.2s ease-in-out;
-moz-transition:all 0.2s ease-in-out;
-o-transition:all 0.2s ease-in-out;
width:0;
height:0;
margin-left:-2px;
margin-top:-2px;}
.dot:hover .ping1,
.dot:hover .ping2,
.dot:hover .ping3 {
transition:all 0.75s ease-out;
-webkit-transition:all 0.75s ease-out;
-moz-transition:all 0.75s ease-out;
-o-transition:all 0.75s ease-out;
}
.dot:hover .ping1 { width:116px;height:116px; margin-left:-60px;margin-top:-60px; }
.dot:hover .ping2{width:66px;height:66px;margin-left:-35px;margin-top:-35px;
-moz-transition-delay:0.2s;
-webkit-transition-delay:0.2s;
-o-transition-delay:0.2s;
transition-delay:0.2s;}
.dot:hover .ping3{width:40px;height:40px;margin-left:-22px;margin-top:-22px;
-moz-transition-delay:0.5s;
-webkit-transition-delay:0.5s;
-o-transition-delay:0.5s;
transition-delay:0.5s;}
.dot{position:absolute;z-index:99;width:14px;height:14px;background:#ee4633;-webkit-border-radius:12px;-moz-border-radius:12px;border-radius:12px;cursor:pointer;}
#map{position:relative;margin:5% auto;width:638px;}
#portland{left:33px;top:50px;}
#palo_alto{left:17px;top:181px;}
#scottsdale {left:115px;top:246px;}
#san_antonio{left:296px;top:311px;}