163 lines
2.5 KiB
CSS
163 lines
2.5 KiB
CSS
body {
|
|
padding-left: 50px;
|
|
padding-right: 50px;
|
|
font-family: 'Kalam';
|
|
}
|
|
|
|
#my-events-header {
|
|
font-size: 2vw;
|
|
}
|
|
|
|
#participated-events-header {
|
|
font-size: 2vw;
|
|
}
|
|
|
|
#page-header {
|
|
font-size: 40px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.header {
|
|
text-align: center;
|
|
}
|
|
|
|
#comment-page-container {
|
|
text-align: center;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
}
|
|
|
|
#my-events {
|
|
background-color: #efefd0;
|
|
font-size: 1vw;
|
|
min-height: 600px;
|
|
max-height: 600px;
|
|
width: 100%;
|
|
border-radius: 30px;
|
|
padding: 20px;
|
|
overflow: auto;
|
|
}
|
|
|
|
#participated-events {
|
|
font-size: 1vw;
|
|
max-height: 600px;
|
|
min-height: 600px;
|
|
width: 100%;
|
|
background-color: #efefd0;
|
|
border-radius: 30px;
|
|
padding: 20px;
|
|
overflow: auto;
|
|
}
|
|
|
|
#my-events-list {
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
background-color: #f29659;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
#participated-events-list {
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
background-color: #f29659;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.background-frame {
|
|
min-height: 100%;
|
|
}
|
|
|
|
#input-list-my-events {
|
|
max-width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
#input-list-participated-events {
|
|
max-width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
#btn-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
/* CSS */
|
|
.button-53 {
|
|
background-color: #f29659;
|
|
border: 0 solid #e5e7eb;
|
|
box-sizing: border-box;
|
|
color: #000000;
|
|
display: flex;
|
|
font-family: ui-sans-serif, system-ui, -apple-system, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
justify-content: center;
|
|
line-height: 1.75rem;
|
|
padding: 0.75rem 1.65rem;
|
|
position: relative;
|
|
text-align: center;
|
|
text-decoration: none #000000 solid;
|
|
text-decoration-thickness: auto;
|
|
width: 100%;
|
|
max-width: 460px;
|
|
position: relative;
|
|
cursor: pointer;
|
|
transform: rotate(-2deg);
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
.button-53:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.button-53:after {
|
|
content: '';
|
|
position: absolute;
|
|
border: 1px solid #000000;
|
|
bottom: 4px;
|
|
left: 4px;
|
|
width: calc(100% - 1px);
|
|
height: calc(100% - 1px);
|
|
}
|
|
|
|
.button-53:hover:after {
|
|
bottom: 2px;
|
|
left: 2px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.button-53 {
|
|
padding: 0.75rem 3rem;
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
|
|
/* Scroll bar */
|
|
|
|
::-webkit-scrollbar {
|
|
width: 15px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
box-shadow: inset 0 0 5px grey;
|
|
border-radius: 5px;
|
|
height: 200px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #f29659;
|
|
border-radius: 5px;
|
|
min-height: 250px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: white;
|
|
}
|