63 lines
No EOL
1,022 B
CSS
63 lines
No EOL
1,022 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1rem 2rem;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: #ff4500;
|
|
}
|
|
|
|
#fumbleButton {
|
|
padding: 10px 25px;
|
|
background-color: #ff4500;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 25px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: transform 0.2s, background-color 0.2s;
|
|
}
|
|
|
|
#fumbleButton:hover {
|
|
background-color: #ff5722;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
#fumbleButton:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
position: relative;
|
|
}
|
|
|
|
#contentFrame {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
} |