taeyeol commited on
Commit
b754767
·
verified ·
1 Parent(s): 8c08e94

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +97 -17
style.css CHANGED
@@ -1,28 +1,108 @@
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
28
  }
 
1
+ /* 공통 스타일 */
2
  body {
3
+ margin: 0;
4
+ padding: 0;
5
+ font-family: sans-serif;
6
+ background: #fdfdfd;
7
+ color: #333;
8
+ }
9
+
10
+ .container {
11
+ max-width: 640px;
12
+ margin: 0 auto;
13
+ padding: 20px;
14
  }
15
 
16
  h1 {
17
+ text-align: center;
18
+ margin-bottom: 10px;
19
+ font-size: 28px;
20
+ color: #444;
21
+ }
22
+
23
+ .desc {
24
+ text-align: center;
25
+ font-size: 15px;
26
+ color: #777;
27
+ margin-bottom: 30px;
28
+ }
29
+
30
+ .question-page {
31
+ background: #fff;
32
+ border-radius: 8px;
33
+ padding: 20px;
34
+ margin-bottom: 20px;
35
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
36
+ }
37
+
38
+ .question-page h2 {
39
+ margin-top: 0;
40
+ font-size: 20px;
41
+ margin-bottom: 15px;
42
+ color: #333;
43
+ }
44
+
45
+ .question {
46
+ margin-bottom: 15px;
47
+ }
48
+
49
+ .question p {
50
+ margin: 0 0 8px;
51
+ font-weight: bold;
52
+ }
53
+
54
+ .question label {
55
+ margin-right: 15px;
56
+ cursor: pointer;
57
+ }
58
+
59
+ button {
60
+ display: inline-block;
61
+ padding: 10px 20px;
62
+ border: none;
63
+ border-radius: 4px;
64
+ background: #00adb5;
65
+ color: #fff;
66
+ cursor: pointer;
67
+ font-size: 14px;
68
+ }
69
+
70
+ button:hover {
71
+ background: #009099;
72
+ }
73
+
74
+ .prev-btn {
75
+ background: #777;
76
+ }
77
+
78
+ .prev-btn:hover {
79
+ background: #666;
80
+ }
81
+
82
+ .result-page {
83
+ background: #fff;
84
+ border-radius: 8px;
85
+ padding: 20px;
86
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
87
+ }
88
+
89
+ .result-page h2 {
90
+ margin-top: 0;
91
+ font-size: 22px;
92
+ color: #333;
93
  }
94
 
95
+ .final-result {
96
+ white-space: pre-wrap;
97
+ margin-bottom: 20px;
98
+ line-height: 1.4;
99
+ color: #444;
100
  }
101
 
102
+ .restart-btn {
103
+ background: #393e46;
 
 
 
 
104
  }
105
 
106
+ .restart-btn:hover {
107
+ background: #2c3137;
108
  }