35 lines
463 B
CSS
35 lines
463 B
CSS
/* styles/statistics.css */
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
padding: 10px;
|
|
width: 300px;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#stats p {
|
|
font-size: 16px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
#share-option {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
button {
|
|
padding: 8px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 15px;
|
|
font-size: 10px;
|
|
text-align: center;
|
|
color: #666;
|
|
}
|
|
|