1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-01-31 15:30:25 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

82 lines
1.3 KiB
CSS
Raw Normal View History

2022-02-09 19:58:25 +08:00
*{
margin: 0;
padding: 0;
}
#trans{
width: 280px;
2022-02-09 21:58:13 +08:00
height: 540px;
2022-02-09 19:58:25 +08:00
float: left;
margin-left: 10px;
background-color: rgb(251, 252, 250);
2022-02-09 21:58:13 +08:00
border:2px solid rgb(251, 252, 250);
border-radius:25px ;
2022-02-09 19:58:25 +08:00
}
#trans_header{
width: 300px;
height: 40px;
background-color:#06abf8;
2022-02-10 02:43:02 +08:00
margin-left: -14px;
margin-top: -4px;
2022-02-09 19:58:25 +08:00
border:2px solid #06abf8;
border-radius:25px 25px 0px 0px;
text-align: center;
line-height: 40px;
font-size: 20px;
color: azure;
font-weight:bold
}
#deleteTrans{
width: 25px;
height: 25px;
background-color: azure;
font-size: 15px;
color: rgb(161, 165, 165);
border:2px solid #06abf8;
border-radius:25px;
float: right;
margin-top: 8px;
margin-right: 10px;
}
.LangSelectCss{
width: 120px;
height: 30px;
text-align: center;
line-height: 40px;
border:none
}
.LangSelectCssOption{
border: none;
}
2022-02-09 16:05:30 +08:00
#inputLang{
2022-02-09 19:58:25 +08:00
margin-top:3px;
width: 275px;
height: 170px;
margin-bottom: 10px;
2022-02-09 16:05:30 +08:00
}
2022-02-09 21:58:13 +08:00
2022-02-09 19:58:25 +08:00
#middleTans{
font-size: 15px;
margin-bottom: 5px;
2022-02-09 16:05:30 +08:00
}
#LangType{
2022-02-09 19:58:25 +08:00
display: inline-block;
line-height: 30px;
2022-02-09 16:05:30 +08:00
}
#tranbtn{
2022-02-09 19:58:25 +08:00
width: 70px;
height: 30px;
display: inline-block;
float: right;
margin-right:15px;
background-color: #06abf8;
font-size: 18px;
border:2px solid #06abf8;
border-radius:10px;
color: azure;
}
#outPutRes{
2022-02-09 21:58:13 +08:00
width: 280px;
height: 230px;
overflow:auto;
2022-02-10 02:43:02 +08:00
}