1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .docx {
- margin-bottom: 20px;
- border-radius: 10px;
- border: 2px solid #0074D9;
- background-color: white;
- min-width: 30em;
- height: 4em;
- line-height: 4em;
- }
- .docx a{
- padding: 15px;
- }
- .docx a, .msg .msg-title {
- color: black;
- text-decoration: none;
- }
- .docx a:hover {
- color: darkblue;
- text-decoration: none;
- }
- .msg {
- margin-bottom: 20px;
- border-radius: 10px;
- border: 2px solid #FFDC00;
- padding: 15px;
- background-color: white;
- }
- .introduce {
- margin-bottom: 20px;
- border-radius: 10px;
- border: 2px solid #3D9970;
- padding: 15px;
- background-color: white;
- }
- .introduce p{
- text-indent: 2em;
- }
|