Leviathan/public/css/eye.css

103 lines
1.3 KiB
CSS
Raw Normal View History

2023-11-26 01:23:30 -05:00
html,
body{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body{
height: auto;
min-height: 100%;
box-sizing: border-box;
2023-11-26 01:23:30 -05:00
padding-top: 80px;
padding-bottom: 80px;
background: #eee;
}
2024-02-24 01:34:32 -05:00
a{
color: teal;
transition: all 200ms ease-in-out;
}
a:hover{
color: #007070;
}
textarea{
max-width: 100%;
min-width: 100%;
height: 100px;
}
2023-11-26 01:23:30 -05:00
.container{
max-width: 1024px;
}
2024-02-24 01:34:32 -05:00
select[multiple]{
min-height: 125px;
}
2023-11-26 01:23:30 -05:00
#main-nav{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 64px;
background: teal;
color: white;
z-index: 20;
2023-11-26 01:23:30 -05:00
}
#main-nav ul{
list-style: none;
display: inline-block;
}
#main-nav h4{
display: inline-block;
margin-left: 25px;
line-height: 64px;
}
#main-nav ul li{
display: inline-block;
margin-left: 15px;
}
#main-nav a{
color: white;
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;
z-index: 10;
2023-11-26 01:23:30 -05:00
}
#main-footer{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 64px;
2023-11-26 01:23:30 -05:00
}
#main-footer p{
margin-bottom: 5px;
text-align: center;
}
2024-02-24 01:34:32 -05:00
#result_form{
margin-bottom: 0;
}
#result_form *{
margin-bottom: 0;
}