-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathmain.css
More file actions
105 lines (91 loc) · 1.5 KB
/
main.css
File metadata and controls
105 lines (91 loc) · 1.5 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
body {
font-family: "Nanum Gothic", sans-serif;
font-size: 16px;
line-height: 1.4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f2f2f2;
}
strong {
font-weight: bold;
}
button {
cursor: pointer;
border: none;
background-color: #6b9fff;
color: white;
border-radius: 50px;
padding: 10px 20px;
font-size: 16px;
}
button:hover {
background-color: #588bf7;
}
.container {
background: white;
width: 360px;
height: 330px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 10px;
}
.container h1 {
font-size: 30px;
font-weight: bold;
margin-bottom: 20px;
color: #333333;
text-align: center;
}
.container .description {
font-size: 17px;
margin: 10px 0;
color: #666666;
}
.container .answer {
display: flex;
gap: 25px;
width: 100%;
}
.container .answer input {
width: 220px;
padding: 10px 20px;
border-radius: 5px;
border: 1px solid #dddddd;
font-size: 16px;
}
.container .answer button{
width: 75px;
}
.error-text {
color: red;
font-size: 17px;
}
.result {
margin-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
.result h2 {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
color: #333333;
width: 100%;
text-align: left;
}
.result .result-text {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
height: 30px;
color: #333333;
}
.result button {
width: 150px;
margin: 0 auto;
}