35 lines
488 B
CSS
35 lines
488 B
CSS
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
width: 80%;
|
|
margin: auto;
|
|
padding: 20px;
|
|
background: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
#logs {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#logs div {
|
|
margin: 10px 0;
|
|
padding: 10px;
|
|
background: #e9e9e9;
|
|
border-radius: 5px;
|
|
} |