-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (43 loc) · 778 Bytes
/
style.css
File metadata and controls
50 lines (43 loc) · 778 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
html, body {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(to right, #4facfe, #00f2fe);
}
.container {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
text-align: center;
width: 300px;
max-width: 90%;
}
input {
padding: 10px;
width: 80%;
margin-bottom: 15px;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #4facfe;
color: white;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #007bff;
}
#result {
margin-top: 20px;
font-size: 16px;
}