privateuserh commited on
Commit
f3680b1
·
verified ·
1 Parent(s): 6d12988

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +89 -18
style.css CHANGED
@@ -1,28 +1,99 @@
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
  body {
2
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3
+ background-color: #f4f7f9;
4
+ color: #333;
5
+ margin: 0;
6
+ padding: 20px;
7
+ display: flex;
8
+ justify-content: center;
9
+ align-items: center;
10
+ min-height: 100vh;
11
  }
12
 
13
+ .container {
14
+ width: 100%;
15
+ max-width: 900px;
16
+ background-color: #fff;
17
+ padding: 30px;
18
+ border-radius: 10px;
19
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
20
  }
21
 
22
+ header {
23
+ text-align: center;
24
+ border-bottom: 2px solid #e0e0e0;
25
+ padding-bottom: 20px;
26
+ margin-bottom: 30px;
27
  }
28
 
29
+ header h1 {
30
+ color: #0056b3;
31
+ margin: 0;
 
 
 
32
  }
33
 
34
+ h2 {
35
+ color: #0056b3;
36
+ margin-top: 0;
37
  }
38
+
39
+ .input-section, .output-section, .history-section {
40
+ margin-bottom: 30px;
41
+ }
42
+
43
+ textarea {
44
+ width: 100%;
45
+ height: 120px;
46
+ padding: 15px;
47
+ border: 1px solid #ccc;
48
+ border-radius: 5px;
49
+ font-size: 16px;
50
+ resize: vertical;
51
+ }
52
+
53
+ button {
54
+ display: block;
55
+ width: 100%;
56
+ padding: 15px;
57
+ background-color: #007bff;
58
+ color: white;
59
+ border: none;
60
+ border-radius: 5px;
61
+ font-size: 18px;
62
+ cursor: pointer;
63
+ margin-top: 15px;
64
+ transition: background-color 0.3s;
65
+ }
66
+
67
+ button:hover {
68
+ background-color: #0056b3;
69
+ }
70
+
71
+ .result-container, .history-container {
72
+ background-color: #f8f9fa;
73
+ border: 1px solid #e0e0e0;
74
+ border-radius: 5px;
75
+ padding: 20px;
76
+ min-height: 100px;
77
+ }
78
+
79
+ .history-entry {
80
+ border-bottom: 1px solid #eee;
81
+ padding: 15px 0;
82
+ }
83
+
84
+ .history-entry:last-child {
85
+ border-bottom: none;
86
+ }
87
+
88
+ .history-entry p {
89
+ margin: 5px 0;
90
+ }
91
+
92
+ footer {
93
+ text-align: center;
94
+ margin-top: 30px;
95
+ padding-top: 20px;
96
+ border-top: 2px solid #e0e0e0;
97
+ font-size: 14px;
98
+ color: #777;
99
+ }