3 changed files with 217 additions and 1 deletions
@ -1 +1,23 @@
|
||||
<p>disposal-node works!</p> |
||||
<!-- 头部操作栏 --> |
||||
<div class="headerOperate"> |
||||
<div id="tedian" class="bigeditdeletebtn" (click)='xianshi(1)' ngClass="buildingbtnchecked"> |
||||
<span>火灾特点</span> |
||||
</div> |
||||
<div id="zhuyi" class="bigeditdeletebtn" (click)='xianshi(2)' ngClass="buildingbtnchecked"> |
||||
<span>注意事项</span> |
||||
</div> |
||||
<div id="chuzhi" class="bigeditdeletebtn" (click)='xianshi(3)' ngClass="buildingbtnchecked"> |
||||
<span>处置要点</span> |
||||
</div> |
||||
<div id="zuzhi" class="bigeditdeletebtn" (click)='xianshi(4)' ngClass="buildingbtnchecked"> |
||||
<span (click)='this.chooseBiaoti=4'>组织指挥要点</span> |
||||
</div> |
||||
|
||||
</div> |
||||
<!--中间文字--> |
||||
<div class="wenzi" id="aaa"> |
||||
<div class="scrollbar"></div> |
||||
</div> |
||||
<div style="width: 100%;"> |
||||
<button class="button" style="float: right;margin-right: 30px;">分享</button> |
||||
</div> |
@ -0,0 +1,84 @@
|
||||
|
||||
.icongray{ |
||||
color: #D9D0DC; |
||||
} |
||||
//头部操作栏 |
||||
.headerOperate { |
||||
position: relative; |
||||
span{ |
||||
font-size: 18px; |
||||
} |
||||
flex: 2%; |
||||
display: flex; |
||||
align-items:center; |
||||
min-height: 40px; |
||||
box-sizing: border-box; |
||||
margin: 3px 0; |
||||
|
||||
.bigeditdeletebtn{ |
||||
border:1px solid #0E79A9; |
||||
margin-right: 0px; |
||||
height: 80%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
// align-items:center;/*由于flex-direction: column,因此align-items代表的是水平方向*/ |
||||
justify-content: center; |
||||
user-select: none; |
||||
//background-image: url("../../../assets/images/标签正常.png") ; |
||||
background-size:100% 100%; |
||||
color: white; |
||||
span{ |
||||
padding: 13px 13px; |
||||
//padding-right: 18px; |
||||
font-size: 24px; |
||||
} |
||||
} |
||||
.bigeditdeletebtn:hover{ |
||||
cursor: pointer; |
||||
//background-image: url("../../../assets/images/标签经过.png") ; |
||||
} |
||||
|
||||
} |
||||
//中间文字区域 |
||||
.wenzi{ |
||||
overflow:auto; |
||||
height: 85%; |
||||
width: 100%; |
||||
line-height: 35px; |
||||
.h3{ |
||||
color: #CC5D13; |
||||
} |
||||
.scrollbar{ |
||||
width: 30px; |
||||
height: 300px; |
||||
margin: 0 auto; |
||||
|
||||
} |
||||
.wenzi::-webkit-scrollbar {/*滚动条整体样式*/ |
||||
width: 10px; /*高宽分别对应横竖滚动条的尺寸*/ |
||||
height: 1px; |
||||
} |
||||
.wenzi::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ |
||||
border-radius: 10px; |
||||
//-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); |
||||
background: #CC5D13; |
||||
} |
||||
.wenzi::-webkit-scrollbar-track {/*滚动条里面轨道*/ |
||||
//-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); |
||||
border-radius: 10px; |
||||
background: #EDEDED; |
||||
} |
||||
} |
||||
.button { |
||||
border-radius: 2px; |
||||
background-color: #4CAF50; |
||||
border: none; |
||||
color: white; |
||||
padding: 15px 32px; |
||||
text-align: center; |
||||
text-decoration: none; |
||||
display: inline-block; |
||||
font-size: 16px; |
||||
margin: 4px 2px; |
||||
cursor: pointer; |
||||
} |
Loading…
Reference in new issue