1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- @charset "utf-8";
- #exercise {
- .code-module {
- padding: 80px 250px;
- text-align: center;
- .title {
- font-size: 18px;
- margin-bottom: 24px;
- }
- .input-block {
- margin-bottom: 24px;
- .input {
- width: 350px;
- input {
- border-top-left-radius: 22px;
- border-bottom-left-radius: 22px;
- }
- }
- .button {
- width: 150px;
- border-top-right-radius: 22px;
- border-bottom-right-radius: 22px;
- }
- }
- .tip {
- .left {
- float: left;
- }
- .right {
- float: right;
- }
- }
- }
- .work-body {
- .work-nav {
- margin-bottom: 20px;
- .left {
- display: inline-block;
- padding-left: 5px;
- font-size: 16px;
- font-weight: 600;
- }
- .right {
- float: right;
- }
- }
- }
- .sentence-code {
- margin-top: -10px;
- margin-bottom: 10px;
- a {
- margin: 3px;
- }
- }
- }
|