16 lines
239 B
CSS
16 lines
239 B
CSS
|
@media screen and (min-width: 700px) {
|
||
|
img{
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
#about{
|
||
|
padding-right: 50%;
|
||
|
padding-bottom: 2%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 700px) {
|
||
|
#about{
|
||
|
padding-bottom: 2%;
|
||
|
}
|
||
|
}
|