-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (52 loc) · 877 Bytes
/
style.css
File metadata and controls
53 lines (52 loc) · 877 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 2rem;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #333;
}
.container {
background-color: #fff;
border-radius: 10px;
padding: 2rem;
max-width: 900px;
margin: auto;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
textarea, input[type="text"] {
width: 100%;
padding: 1rem;
margin-top: 0.5rem;
border-radius: 5px;
border: 1px solid #ccc;
resize: vertical;
}
button {
margin-top: 1rem;
padding: 0.75rem 1.5rem;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.result {
margin-top: 2rem;
background-color: #e9f7ef;
padding: 1rem;
border-radius: 10px;
}
.score {
font-size: 1.5rem;
font-weight: bold;
color: #28a745;
}
.suggestions {
margin-top: 1rem;
}
.suggestions li {
margin-bottom: 0.5rem;
}