mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 16:49:46 +08:00
36 lines
758 B
CSS
36 lines
758 B
CSS
.base {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
min-height: 200px;
|
|
overflow: hidden;
|
|
width: 330px;
|
|
z-index: 1;
|
|
position: relative;
|
|
background: #fff;
|
|
border-radius: 2px;
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
|
|
.shadow--4 {
|
|
box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2);
|
|
}
|
|
|
|
.shadow--2{
|
|
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
|
|
}
|
|
|
|
.shadow--3 {
|
|
box-shadow: 0 3px 4px 0 rgba(0,0,0,.14), 0 3px 3px -2px rgba(0,0,0,.2), 0 1px 8px 0 rgba(0,0,0,.12);
|
|
}
|
|
|
|
|