1234567891011121314151617181920212223242526272829303132 |
- .demo_img {
- text-align : center;
- margin-bottom: 60px;
-
- .img-wrap {
- // max-height: 175px;
- overflow : hidden;
- margin-bottom: 15px;
- box-shadow : 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
- background : $white;
- padding : 10px;
- border-radius: 16px;
- border : 1px solid #EFF2F7;
- }
-
- img {
- border-radius: 5px;
- }
- }
-
- .intro-demo_img {
- // box-shadow: 0px 20px 25px rgba(22, 28, 45, 0.05);
- background : $white;
- box-shadow : 0px 36px 48px rgba(31, 66, 135, 0.04);
- padding : 10px;
- border-radius: 16px;
-
- img {
- border-radius: 5px;
- }
-
- }
|