blt/public/css/kourend.css

114 lines
1.7 KiB
CSS
Raw Permalink Normal View History

html,
body{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body{
2023-11-27 22:26:36 -05:00
height: auto;
min-height: 100%;
box-sizing: border-box;
padding-top: 80px;
2024-05-29 12:10:27 -04:00
padding-bottom: 100px;
background: #eee;
}
2023-11-27 22:26:36 -05:00
textarea{
max-width: 100%;
min-width: 100%;
height: 100px;
}
2024-05-29 09:02:00 -04:00
form select[multiple]{
2023-11-27 22:26:36 -05:00
min-height: 100px;
}
2024-05-29 12:08:58 -04:00
/* Material card styles */
.card-1 {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.card-1:hover {
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.card-2 {
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.card-3 {
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.card-4 {
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.card-5 {
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
2023-11-27 22:26:36 -05:00
.container{
max-width: 1024px;
}
#main-nav{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 64px;
2023-11-27 22:26:36 -05:00
background: teal;
color: white;
2023-11-27 22:26:36 -05:00
z-index: 20;
}
2023-11-27 22:26:36 -05:00
#main-nav ul{
list-style: none;
2023-11-27 22:26:36 -05:00
display: inline-block;
}
2023-11-27 22:26:36 -05:00
#main-nav h4{
display: inline-block;
2023-11-27 22:26:36 -05:00
margin-left: 25px;
line-height: 64px;
}
2023-11-27 22:26:36 -05:00
#main-nav ul li{
display: inline-block;
margin-left: 15px;
}
2023-11-27 22:26:36 -05:00
#main-nav a{
color: white;
2023-11-27 22:26:36 -05:00
font-size: 2.25rem;
line-height: 64px;
transition: all 200ms ease-in-out;
}
#main-nav a:hover{
color: #eee;
font-size: 2.5rem;
}
#main-content{
padding: 14px 20px;
background: white;
border-radius: 8px;
2023-11-27 22:26:36 -05:00
z-index: 10;
}
#main-footer{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 64px;
2023-11-27 22:26:36 -05:00
}
#main-footer p{
2023-11-27 22:26:36 -05:00
margin-bottom: 5px;
text-align: center;
}