17 lines
274 B
SCSS
17 lines
274 B
SCSS
div.start {
|
|
margin: 0 auto;
|
|
padding: 50px 0px;
|
|
background: transparent;
|
|
display: flex;
|
|
.left {
|
|
flex: 45%;
|
|
text-align: center;
|
|
}
|
|
.right {
|
|
flex: 55%;
|
|
}
|
|
img {
|
|
max-height: 7dh;
|
|
max-width: 100%;
|
|
}
|
|
}
|