mkoot007 commited on
Commit
291bc4b
·
1 Parent(s): 263e24b

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +16 -11
style.css CHANGED
@@ -1,16 +1,21 @@
1
- h1 {
2
- text-align: center;
 
 
3
  }
4
 
5
- #duplicate-button {
6
- margin: auto;
7
- color: white;
8
- background: #1565c0;
9
- border-radius: 100vh;
10
  }
11
 
12
- .contain {
13
- max-width: 900px;
14
- margin: auto;
15
- padding-top: 1.5rem;
 
 
 
16
  }
 
1
+
2
+ body {
3
+ background-image: url('BK.jpg');
4
+ background-size: cover;
5
  }
6
 
7
+ input[type="text"] {
8
+ background-color: #f2f2f2;
9
+ color: #333;
10
+ border: 1px solid #ccc;
11
+ border-radius: 5px;
12
  }
13
 
14
+ button {
15
+ background-color: #007bff;
16
+ color: #fff;
17
+ border: none;
18
+ border-radius: 5px;
19
+ padding: 10px 20px;
20
+ cursor: pointer;
21
  }