10 changed files with 397 additions and 475 deletions
File diff suppressed because it is too large
@ -1,10 +1,60 @@ |
|||||
.container { |
.container { |
||||
padding: 20px; |
padding: 20px; |
||||
|
|
||||
.title { |
.title { |
||||
font-size: 25px; |
font-size: 25px; |
||||
font-weight: bolder; |
font-weight: bolder; |
||||
} |
} |
||||
|
|
||||
.opeation { |
.opeation { |
||||
margin: 20px 0; |
margin: 20px 0; |
||||
} |
} |
||||
|
|
||||
|
.panel { |
||||
|
padding: 10px 20px; |
||||
|
border-radius: 6px; |
||||
|
|
||||
|
.panelTitle { |
||||
|
cursor: pointer; |
||||
|
margin-bottom: 10px; |
||||
|
|
||||
|
.panelTitleName { |
||||
|
display: inline-block; |
||||
|
font-size: 25px; |
||||
|
font-weight: bolder; |
||||
|
position: relative; |
||||
|
|
||||
|
&:before { |
||||
|
font-size: 20px; |
||||
|
content: "#"; |
||||
|
opacity: 0; |
||||
|
position: absolute; |
||||
|
color: red; |
||||
|
right: 100%; |
||||
|
top: 50%; |
||||
|
transform: translateY(-50%); |
||||
|
transition: opacity .3s linear; |
||||
|
} |
||||
|
|
||||
|
&:hover:before { |
||||
|
opacity: 1; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.panelTitleDesc { |
||||
|
display: inline-block; |
||||
|
font-size: 14px; |
||||
|
margin-left: 8px; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.cell { |
||||
|
border: 1px solid #999999; |
||||
|
padding: 5px 15px; |
||||
|
font-size: 14px; |
||||
|
border-radius: 5px; |
||||
|
cursor: pointer; |
||||
|
user-select: none; |
||||
|
} |
||||
|
} |
||||
} |
} |
||||
|
Loading…
Reference in new issue