41 lines
551 B
CSS
41 lines
551 B
CSS
/* reset */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* general */
|
|
body {
|
|
background-color: #efefef;
|
|
}
|
|
|
|
/* page */
|
|
.page-wrapper {
|
|
margin: 0 auto;
|
|
width: 960px;
|
|
max-width: 100%;
|
|
}
|
|
|
|
/* box */
|
|
.box-content {
|
|
padding: 20px;
|
|
background-color: #efefef;
|
|
}
|
|
|
|
textarea {
|
|
background-color: #fafafa;
|
|
border: #efefef solid 1px;
|
|
color: #333;
|
|
height: 150px;
|
|
width: 100%;
|
|
}
|
|
|
|
/* richtext custom style */
|
|
.richText {
|
|
margin-top: 40px;
|
|
-webkit-box-shadow: 0 0 20px 0 #999;
|
|
-moz-box-shadow: 0 0 20px 0 #999;
|
|
box-shadow: 0 0 20px 0 #999;
|
|
}
|