94 lines
1.3 KiB
CSS
94 lines
1.3 KiB
CSS
|
|
.App {
|
||
|
|
text-align: center;
|
||
|
|
min-height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.App-header {
|
||
|
|
background-color: #282c34;
|
||
|
|
padding: 20px;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.App-main {
|
||
|
|
flex: 1;
|
||
|
|
padding: 20px;
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 0 auto;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section {
|
||
|
|
background: #f5f5f5;
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 20px;
|
||
|
|
margin: 20px 0;
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section h2 {
|
||
|
|
margin-top: 0;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section p {
|
||
|
|
margin: 10px 0;
|
||
|
|
word-break: break-all;
|
||
|
|
}
|
||
|
|
|
||
|
|
button {
|
||
|
|
background-color: #4CAF50;
|
||
|
|
border: none;
|
||
|
|
color: white;
|
||
|
|
padding: 12px 24px;
|
||
|
|
text-align: center;
|
||
|
|
text-decoration: none;
|
||
|
|
display: inline-block;
|
||
|
|
font-size: 16px;
|
||
|
|
margin: 10px 0;
|
||
|
|
cursor: pointer;
|
||
|
|
border-radius: 4px;
|
||
|
|
transition: background-color 0.3s;
|
||
|
|
}
|
||
|
|
|
||
|
|
button:hover:not(:disabled) {
|
||
|
|
background-color: #45a049;
|
||
|
|
}
|
||
|
|
|
||
|
|
button:disabled {
|
||
|
|
background-color: #cccccc;
|
||
|
|
cursor: not-allowed;
|
||
|
|
}
|
||
|
|
|
||
|
|
.error {
|
||
|
|
background-color: #f44336;
|
||
|
|
color: white;
|
||
|
|
padding: 15px;
|
||
|
|
border-radius: 4px;
|
||
|
|
margin: 20px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.App-footer {
|
||
|
|
background-color: #282c34;
|
||
|
|
padding: 20px;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.App-footer a {
|
||
|
|
color: #61dafb;
|
||
|
|
}
|
||
|
|
|
||
|
|
ul {
|
||
|
|
list-style-type: none;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
li {
|
||
|
|
background: white;
|
||
|
|
padding: 15px;
|
||
|
|
margin: 10px 0;
|
||
|
|
border-radius: 4px;
|
||
|
|
text-align: left;
|
||
|
|
}
|