-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem_solving.css
More file actions
118 lines (100 loc) · 1.65 KB
/
problem_solving.css
File metadata and controls
118 lines (100 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
* {
padding: 0px;
margin: 0px;
background-color: #E6E6E6;
}
a {
text-decoration-line: none;
}
/* 로고 스타일 */
.logo {
display: inline-block;
background-color: #4a88e5;
color: #fff;
width: 60px;
height: 60px;
font-size: 20px;
text-align: center;
line-height: 60px;
border-radius: 50%;
padding: 10px;
margin: 15px;
}
/* 문구 스타일 */
.practice {
display: inline-block;
color: #909090;
text-align: center;
font-size: 23px;
}
.title {
display: inline-block;
color: #000;
text-align: center;
font-size: 23px;
}
.up {
display: flex;
}
.left {
margin: 40px;
flex: 5;
}
.text {
font-size: 23px;
}
.explanation {
margin-top: 20px;
padding: 10px;
padding-bottom: 250px;
border: 1px solid #c2c2c2;
background-color: #c2c2c2;
}
.rigth {
margin: 40px;
flex: 5;
}
.answer {
font-size: 23px;
}
.box {
margin-top: 20px;
padding: 10px;
padding-bottom: 270px;
border: 1px solid #c2c2c2;
background-color: #c2c2c2;
text-align: start;
}
.un {
display: flex;
}
.under {
margin: 40px;
margin-top: -10px;
}
.ex {
font-size: 23px;
}
.example {
margin-top: 10px;
padding: 70px;
border: 1px solid #c2c2c2;
background-color: #c2c2c2;
width: 620px;
}
/* 정답 버튼 스타일 */
.write-button {
padding: 10px;
margin-left: auto;
margin-right: 30px;
margin-top: 200px;
}
.write-button a {
background-color: #c2c2c2;
border: 1px solid #000000;
color: #000000;
padding: 10px 20px;
text-decoration: none;
font-size: 13px;
margin-left: 20px;
}