2023-11-24 23:34:50 -05:00
|
|
|
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;
|
2023-11-24 23:34:50 -05:00
|
|
|
padding-top: 80px;
|
|
|
|
padding-bottom: 80px;
|
|
|
|
background: #eee;
|
|
|
|
}
|
|
|
|
|
2023-11-27 22:26:36 -05:00
|
|
|
textarea{
|
|
|
|
max-width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form select{
|
|
|
|
min-height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container{
|
|
|
|
max-width: 1024px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-nav{
|
2023-11-24 23:34:50 -05:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
2023-11-27 22:26:36 -05:00
|
|
|
background: teal;
|
2023-11-24 23:34:50 -05:00
|
|
|
color: white;
|
2023-11-27 22:26:36 -05:00
|
|
|
z-index: 20;
|
2023-11-24 23:34:50 -05:00
|
|
|
}
|
|
|
|
|
2023-11-27 22:26:36 -05:00
|
|
|
#main-nav ul{
|
2023-11-24 23:34:50 -05:00
|
|
|
list-style: none;
|
2023-11-27 22:26:36 -05:00
|
|
|
display: inline-block;
|
2023-11-24 23:34:50 -05:00
|
|
|
}
|
2023-11-27 22:26:36 -05:00
|
|
|
#main-nav h4{
|
2023-11-24 23:34:50 -05:00
|
|
|
display: inline-block;
|
2023-11-27 22:26:36 -05:00
|
|
|
margin-left: 25px;
|
|
|
|
line-height: 64px;
|
2023-11-24 23:34:50 -05:00
|
|
|
}
|
2023-11-27 22:26:36 -05:00
|
|
|
#main-nav ul li{
|
|
|
|
display: inline-block;
|
2023-11-24 23:34:50 -05:00
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
|
2023-11-27 22:26:36 -05:00
|
|
|
#main-nav a{
|
2023-11-24 23:34:50 -05:00
|
|
|
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;
|
2023-11-24 23:34:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#main-content{
|
|
|
|
padding: 14px 20px;
|
|
|
|
background: white;
|
|
|
|
border-radius: 8px;
|
2023-11-27 22:26:36 -05:00
|
|
|
z-index: 10;
|
2023-11-24 23:34:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#main-footer{
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
2023-11-27 22:26:36 -05:00
|
|
|
|
2023-11-24 23:34:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#main-footer p{
|
2023-11-27 22:26:36 -05:00
|
|
|
margin-bottom: 5px;
|
2023-11-24 23:34:50 -05:00
|
|
|
text-align: center;
|
|
|
|
}
|