123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- *, html {
- margin: 0;
- padding: 0;
- }
- .container {
- position: relative;
- max-width: 1140px;
- margin: 0 auto;
- padding: 50px;
- }
- .wrapper{
- display: flex;
- flex-direction: column;
- border: solid 3px black;
- width: 70px;
- align-items: center;
- background-color: rgb(231, 220, 220);
- box-shadow: black -5px 5px;
- margin-bottom: 20px;
- }
- .wrapper div {
- width: 50px;
- height: 50px;
- margin-bottom: 5px;
- border-radius: 100%;
- background-color: rgb(130, 128, 128);
- }
- .wrapper1{
- display: flex;
- flex-direction: column;
- border: solid 3px black;
- width: 70px;
- align-items: center;
- background-color: rgb(231, 220, 220);
- box-shadow: black -5px 5px;
- }
- .wrapper1 div {
- width: 50px;
- height: 50px;
- margin-top: 3px;
- margin-bottom: 5px;
- border-radius: 100%;
- background-color: rgb(130, 128, 128);
-
- }
|