abbasNoway commited on
Commit
b28e548
·
verified ·
1 Parent(s): 24bc7fd

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +54 -0
style.css ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f4f4f4;
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ height: 100vh;
8
+ margin: 0;
9
+ }
10
+
11
+ .container {
12
+ background-color: #fff;
13
+ padding: 20px;
14
+ border-radius: 8px;
15
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
16
+ width: 400px;
17
+ text-align: center;
18
+ }
19
+
20
+ h1 {
21
+ font-size: 24px;
22
+ margin-bottom: 20px;
23
+ }
24
+
25
+ label {
26
+ display: block;
27
+ margin: 10px 0 5px;
28
+ }
29
+
30
+ input[type="number"] {
31
+ width: 100%;
32
+ padding: 8px;
33
+ margin-bottom: 10px;
34
+ border-radius: 4px;
35
+ border: 1px solid #ccc;
36
+ }
37
+
38
+ button {
39
+ padding: 10px 15px;
40
+ background-color: #4CAF50;
41
+ color: white;
42
+ border: none;
43
+ border-radius: 4px;
44
+ cursor: pointer;
45
+ }
46
+
47
+ button:hover {
48
+ background-color: #45a049;
49
+ }
50
+
51
+ h2 {
52
+ margin-top: 20px;
53
+ color: #333;
54
+ }