-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModern.css
More file actions
43 lines (38 loc) · 691 Bytes
/
Copy pathModern.css
File metadata and controls
43 lines (38 loc) · 691 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
body {
margin: 0;
font-family: sans-serif;
background: linear-gradient(135deg, #667eea, #764ba2);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
backdrop-filter: blur(15px);
background: rgba(255, 255, 255, 0.2);
padding: 25px;
border-radius: 15px;
width: 300px;
color: white;
}
.input-box {
display: flex;
gap: 10px;
}
input {
flex: 1;
padding: 8px;
border: none;
border-radius: 8px;
}
button {
padding: 8px 12px;
border: none;
border-radius: 8px;
cursor: pointer;
}
li {
margin-top: 10px;
display: flex;
justify-content: space-between;
}