parent
c7e1de0563
commit
f542f68e87
5 changed files with 246 additions and 248 deletions
@ -1,95 +0,0 @@ |
|||||||
|
|
||||||
.mybooks{ |
|
||||||
width: 100%; |
|
||||||
padding:0 5px; |
|
||||||
margin-top: 60px; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-title{ |
|
||||||
width: 100%; |
|
||||||
direction: rtl; |
|
||||||
font-size: 25px; |
|
||||||
font-weight: bold; |
|
||||||
color: #5DC964; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-tabs{ |
|
||||||
width: 100%; |
|
||||||
display: flex; |
|
||||||
align-items: center; |
|
||||||
direction: rtl; |
|
||||||
margin-top: 10px; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-tabs-item{ |
|
||||||
width: 50%; |
|
||||||
height: 50px; |
|
||||||
display: flex; |
|
||||||
align-items: center; |
|
||||||
justify-content: center; |
|
||||||
font-size: 20px; |
|
||||||
cursor: pointer; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-tabs-item1{ |
|
||||||
border-radius: 0 5px 5px 0; |
|
||||||
border: 1px solid #418f46; |
|
||||||
background-color: white; |
|
||||||
color: #5DC964; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-tabs-item2{ |
|
||||||
border-radius: 5px 0px 0px 5px; |
|
||||||
border: 1px solid #418f46; |
|
||||||
background-color: #5DC964; |
|
||||||
color: white; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-line{ |
|
||||||
width: 100%; |
|
||||||
height: 1px; |
|
||||||
background-color: rgb(201, 199, 199); |
|
||||||
margin-top: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-main-content{ |
|
||||||
width: 100%; |
|
||||||
margin-top: 15px; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-main-content-item{ |
|
||||||
width: 100%; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-main-content-row1{ |
|
||||||
width: 100%; |
|
||||||
display: flex; |
|
||||||
justify-content: space-between; |
|
||||||
direction: ltr; |
|
||||||
padding: 15px 0; |
|
||||||
border-bottom: 1px solid rgb(201, 199, 199); |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-main-content-row1-img-container{ |
|
||||||
width: 25%; |
|
||||||
height: auto; |
|
||||||
border-radius: 5px; |
|
||||||
overflow: hidden; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-main-content-row1-img{ |
|
||||||
width: 100%; |
|
||||||
height: 100%; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-main-content-row1-text{ |
|
||||||
width: 80%; |
|
||||||
} |
|
||||||
|
|
||||||
.mybooks-main-content-row1-text-name, |
|
||||||
.mybooks-main-content-row1-text-activation-date, |
|
||||||
.mybooks-main-content-row1-text-activation-code{ |
|
||||||
width: 100%; |
|
||||||
font-size: 16px; |
|
||||||
margin-bottom: 10px; |
|
||||||
} |
|
@ -0,0 +1,129 @@ |
|||||||
|
.mybooks { |
||||||
|
width: 100%; |
||||||
|
padding: 0 5px; |
||||||
|
|
||||||
|
max-width: 700px; |
||||||
|
margin: auto; |
||||||
|
margin-top: 60px; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-title { |
||||||
|
text-align: center; |
||||||
|
width: 100%; |
||||||
|
direction: rtl; |
||||||
|
font-size: 25px; |
||||||
|
font-weight: bold; |
||||||
|
color: #5dc964; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-tabs { |
||||||
|
width: 100%; |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
direction: rtl; |
||||||
|
margin-top: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-tabs-item { |
||||||
|
width: 50%; |
||||||
|
height: 50px; |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
font-size: 20px; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-tabs-item1 { |
||||||
|
border-radius: 0 5px 5px 0; |
||||||
|
border: 1px solid #418f46; |
||||||
|
background-color: white; |
||||||
|
color: #5dc964; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-tabs-item2 { |
||||||
|
border-radius: 5px 0px 0px 5px; |
||||||
|
border: 1px solid #418f46; |
||||||
|
background-color: white; |
||||||
|
color: #5dc964; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-tabs-active { |
||||||
|
background-color: #5dc964; |
||||||
|
color: white; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-line { |
||||||
|
width: 100%; |
||||||
|
height: 1px; |
||||||
|
background-color: rgb(201, 199, 199); |
||||||
|
margin-top: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-main-content { |
||||||
|
width: 100%; |
||||||
|
margin-top: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-main-content-item { |
||||||
|
width: 100%; |
||||||
|
padding: 0 10px; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-main-content-row1 { |
||||||
|
width: 100%; |
||||||
|
display: flex; |
||||||
|
justify-content: space-between; |
||||||
|
direction: ltr; |
||||||
|
padding: 15px 0; |
||||||
|
border-bottom: 1px solid rgb(201, 199, 199); |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-main-content-row1-img-container { |
||||||
|
width: 25%; |
||||||
|
min-width: 60px; |
||||||
|
max-width: 100px; |
||||||
|
width: 20%; |
||||||
|
height: auto; |
||||||
|
|
||||||
|
overflow: hidden; |
||||||
|
margin: auto auto 0 auto; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-main-content-row1-img { |
||||||
|
width: 100%; |
||||||
|
|
||||||
|
border-radius: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-main-content-row1-text { |
||||||
|
width: 80%; |
||||||
|
} |
||||||
|
|
||||||
|
.mybooks-main-content-row1-text-name { |
||||||
|
font-size: 18px; |
||||||
|
color: #2a8f8f; |
||||||
|
font-weight: bold; |
||||||
|
margin-bottom: 10px; |
||||||
|
} |
||||||
|
.mybooks-main-content-row1-text-activation-date, |
||||||
|
.mybooks-main-content-row1-text-activation-code { |
||||||
|
width: 100%; |
||||||
|
font-size: 13px; |
||||||
|
margin-bottom: 5px; |
||||||
|
} |
||||||
|
.mybooks-main-content_bottoms { |
||||||
|
margin-top: 5px; |
||||||
|
a { |
||||||
|
text-decoration: none; |
||||||
|
color: aliceblue; |
||||||
|
background-color: #5dc964; |
||||||
|
border-radius: 5px; |
||||||
|
padding: 5px 10px; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
a:hover { |
||||||
|
color: aliceblue; |
||||||
|
background-color: #418f46; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue