This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/progp/24-10-2/style.css
danielvici123 7c5bb1e29f - Unnötige Datei gelöscht
- erste aufgabe fertig
- zweite aufgabe mit style gemacht (style war nicht geforder)
2024-10-02 11:54:06 +02:00

46 lines
853 B
CSS

body {
background-color: cornflowerblue;
margin: 2px;
font-family: Arial, sans-serif;
}
button {
color: white;
background-color: cornflowerblue;
border-radius: 24px;
border: 2px solid black;
height: 50px;
width: 90px;
text-align: center;
}
button:hover{
background-color: white;
color: cornflowerblue;
cursor: pointer;
height: 57px;
width: 98px;
}
input {
background-color: azure;
border: 2px solid black;
border-radius: 24px;
}
.main {
border: 5px;
border-style: dashed;
border-color: black;
padding-top: 10px;
padding-left: 15px;
padding-bottom: 10px;
border-radius: 24px;
margin-top: 10px;
}
.drinne {
color: white;
font-weight: bold;
text-decoration: underline;
}
p {
font-size: 16px;
color: black;
margin-bottom: 10px;
}