parent
fa766b123d
commit
8c8d936dc2
13 changed files with 316 additions and 152 deletions
@ -0,0 +1,69 @@ |
|||||||
|
.book-toggle { |
||||||
|
width: calc(100% - 60px); |
||||||
|
background-color: transparent; |
||||||
|
height: calc(100vh / 1.8); |
||||||
|
&__info { |
||||||
|
width: calc(100% / 2.5); |
||||||
|
} |
||||||
|
img { |
||||||
|
height: 90%; |
||||||
|
border-radius: 8px; |
||||||
|
} |
||||||
|
p { |
||||||
|
margin-top: 20px; |
||||||
|
} |
||||||
|
a { |
||||||
|
transition: all 0.3s; |
||||||
|
width: fit-content; |
||||||
|
border-radius: 4px; |
||||||
|
padding: 10px 35px; |
||||||
|
align-self: end; |
||||||
|
margin-top: 60px; |
||||||
|
border: 1px solid white; |
||||||
|
color: white; |
||||||
|
&:hover{ |
||||||
|
border-color: $green; |
||||||
|
color: $green; |
||||||
|
} |
||||||
|
} |
||||||
|
&-light { |
||||||
|
strong, |
||||||
|
p { |
||||||
|
color: $gray5; |
||||||
|
} |
||||||
|
} |
||||||
|
&-dark { |
||||||
|
strong, |
||||||
|
p { |
||||||
|
color: $gray12; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@media screen and (min-width: 1441px) { |
||||||
|
.book-toggle { |
||||||
|
strong { |
||||||
|
font-size: 21px; |
||||||
|
} |
||||||
|
p { |
||||||
|
font-size: 14px; |
||||||
|
} |
||||||
|
a { |
||||||
|
font-size: 16px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@media screen and (min-width: 1008px) and (max-width: 1440px) { |
||||||
|
.book-toggle { |
||||||
|
strong { |
||||||
|
font-size: calc(100vw / 70); |
||||||
|
} |
||||||
|
p { |
||||||
|
font-size: calc(100vw / 100); |
||||||
|
} |
||||||
|
a { |
||||||
|
font-size: calc(100vw / 80); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -1 +1 @@ |
|||||||
$maxWidth : calc(100% - 120px); |
$maxWidth : calc(100% - 120px); |
||||||
|
Loading…
Reference in new issue