wewechat++ init
仓库提交至星火社区作品集 Signed-off-by: Riceneeder <86492950+Riceneeder@users.noreply.github.com>
This commit is contained in:
104
src/js/pages/NewChat/style.css
Normal file
104
src/js/pages/NewChat/style.css
Normal file
@@ -0,0 +1,104 @@
|
||||
|
||||
.container {
|
||||
background: #fff;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
font-family: 'Roboto';
|
||||
font-size: 36px;
|
||||
color: #000;
|
||||
font-weight: 100;
|
||||
letter-spacing: 2px;
|
||||
word-spacing: 4px;
|
||||
|
||||
& input {
|
||||
height: 64px;
|
||||
line-height: 64px;
|
||||
width: 80%;
|
||||
text-align: center;
|
||||
border: none;
|
||||
background: none;
|
||||
outline: 0;
|
||||
font-size: 32px;
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
& button {
|
||||
display: inline-block;
|
||||
height: 36px;
|
||||
background-color: rgba(99, 99, 99, 0);
|
||||
font-family: 'Roboto';
|
||||
font-weight: 500;
|
||||
color: rgba(33, 150, 243, .9);
|
||||
line-height: 36px;
|
||||
text-align: center;
|
||||
letter-spacing: .4px;
|
||||
padding: 0 16px;
|
||||
border: 0;
|
||||
border-radius: 1px;
|
||||
text-transform: uppercase;
|
||||
margin: 0 12px;
|
||||
font-size: 16px;
|
||||
outline: 0;
|
||||
cursor: pointer;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
transition: .2s;
|
||||
}
|
||||
|
||||
& button:disabled {
|
||||
background: rgba(99, 99, 99, .2);
|
||||
opacity: .5;
|
||||
}
|
||||
|
||||
& button:hover {
|
||||
background: rgba(99, 99, 99, .2);
|
||||
}
|
||||
}
|
||||
|
||||
.avatars {
|
||||
min-height: 20px;
|
||||
|
||||
& img {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
margin: 12px 4px;
|
||||
box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3);
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width <= 800px) {
|
||||
.container {
|
||||
font-size: 26px;
|
||||
letter-spacing: 2px;
|
||||
word-spacing: 2px;
|
||||
|
||||
& input {
|
||||
height: 46px;
|
||||
line-height: 46px;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
& button {
|
||||
height: 26px;
|
||||
line-height: 26px;
|
||||
letter-spacing: .4px;
|
||||
padding: 0 12px;
|
||||
margin: 0 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
.avatars {
|
||||
min-height: 20px;
|
||||
|
||||
& img {
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
margin: 12px 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user