Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-09-04 12:45:01 +02:00

43 lines
679 B
CSS

#vordefiniert {
width: 300px;
height: 300px;
background-color: olivedrab;
}
#hexadezimal {
width: 300px;
height: 300px;
background-color: #AF0F55;
}
#RGB {
width: 300px;
height: 300px;
background-color: rgb(33, 77, 99);
}
#RGBA {
width: 300px;
height: 300px;
background-color: rgba(94, 180, 199, 0.2);
}
.hintergrund {
width: 400px;
height: 400px;
padding: 50px;
box-sizing: border-box;
background-color: rgb(40, 60, 80);
}
#HSL {
width: 300px;
height: 300px;
background-color: hsl(167, 77%, 50%);
}
#HSLA {
width: 300px;
height: 300px;
background-color: hsla(44, 33%, 53%, 0.5);
}