Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- body {
- font-family: Arial, sans-serif;
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 100px;
- background-color: #f9f9f9;
- }
- .container {
- display: grid;
- justify-items: center;
- align-items: start;
- height: 300px;
- font-weight: bold;
- }
- .block1 {
- border: 1px dashed black;
- padding: 100px;
- margin: 10px 0;
- }
- .text1 {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- margin: 20;
- text-align: center;
- font-size: 16px;
- }
- .block2 {
- height: 100px;
- width: 400px;
- border: 1px dashed black;
- background-image: url('/Users/eliseydubrovin/Downloads/HW4/icons_practice_module_3/cat_box_256.png');
- background-repeat: repeat-x;
- background-size: contain;
- }
- .block3 {
- border: 1px dashed black;
- padding: 10px;
- margin: 10px 0;
- text-align: center;
- width: 400px;
- }
- .text4 {
- font-size: 35px;
- font-weight: bold;
- margin: 0;
- }
- .block4 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- border: 1px dashed black;
- padding: 10px;
- width: 400px;
- height: 100px;
- }
- .img1 {
- display: block;
- margin-left: auto;
- margin-right: auto;
- width: 100px;
- }
- .img2 {
- width: 100px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .img3 {
- width: 400px;
- }
- .img4 {
- max-height: 80px;
- max-width: 80px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement