Web应用课中期项目-拳皇
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

84 lines
1.6 KiB

#kof {
width: 960px;
height: 540px;
background-image: url('/static/images/background/0.gif');
background-size: 200% 100%;
background-position: top;
position: absolute;
}
#kof > .kof-head {
width: 100%;
height: 80px;
position: absolute;
top: 0;
display: flex;
justify-content: center;
align-items: center;
}
#kof > .kof-head > .kof-head-hp-0 {
width: calc(50% - 60px);
height: 40px;
border: white 5px solid;
border-right: none;
box-sizing: border-box;
}
#kof > .kof-head > .kof-head-hp-1 {
width: calc(50% - 60px);
height: 40px;
border: white 5px solid;
border-left: none;
box-sizing: border-box;
}
#kof > .kof-head > .kof-head-timer {
width: 100px;
height: 60px;
background-color: orange;
box-sizing: border-box;
color: red;
font-size: 30px;
text-align: center;
border: white 5px solid;
line-height: 50px;
user-select: none;
}
#kof > .kof-head > .kof-head-hp-0 > div {
background-color: red;
width: 100%;
height: 100%;
float: right;
}
#kof > .kof-head > .kof-head-hp-1 > div {
background-color: red;
width: 100%;
height: 100%;
}
#kof > .kof-head > .kof-head-hp-0 > div > div{
background-color: lightgreen;
width: 100%;
height: 100%;
float: right;
text-align: right;
font-weight: bold;
font-size: 20px;
color: blue;
}
#kof > .kof-head > .kof-head-hp-1 > div > div{
background-color: lightgreen;
width: 100%;
height: 100%;
font-size: 20px;
font-weight: bold;
color: blue;
}