a1/styles.css

69 lines
1.0 KiB
CSS
Raw Normal View History

2024-05-17 07:40:03 +00:00
body {
font-family: Arial, sans-serif;
2024-05-21 08:05:17 +00:00
background-color: #f7f7f7f5;
2024-05-17 07:40:03 +00:00
color: #333;
margin: 0;
padding: 20px;
line-height: 1.6;
}
h1 {
text-align: center;
color: #0056b3;
margin-bottom: 20px;
}
input[type="text"] {
width: calc(100% - 22px);
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
display: block;
width: 100%;
padding: 10px;
background-color: #0056b3;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #004494;
}
h2 {
color: #0056b3;
border-bottom: 2px solid #0056b3;
padding-bottom: 5px;
margin-top: 20px;
}
2024-05-20 09:38:56 +00:00
#nieposortowane {
display: flex;
flex-direction: column;
}
2024-05-21 08:12:02 +00:00
li:hover {
color: red;
}
#nieposortowane:hover {
background-color: white;
}
2024-05-20 09:38:56 +00:00
/* .pre {
2024-05-17 07:40:03 +00:00
background-color: #fff;
border: 1px solid #ccc;
padding: 10px;
border-radius: 4px;
overflow-x: auto;
2024-05-20 10:08:44 +00:00
} */