-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
59 lines (53 loc) · 991 Bytes
/
style.css
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
51
52
53
54
55
56
57
58
59
body {
background-color: #FA8072;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
background-color: white;
padding: 50px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
input {
width: 350px;
height: 40px;
display: block;
margin: 20px auto;
text-align: center;
border-radius: 5px;
border: 2px solid #ddd;
font-size: 18px;
padding: 5px;
}
#output {
margin-top: 25px;
font-size: 24px;
color: #333;
background: lightgreen;
padding: 20px;
border-radius: 10px;
display: inline-block;
}
#btn {
width: 350px;
height: 50px;
color: #fff;
background-color: blue;
border: none;
border-radius: 10px;
font-size: 18px;
cursor: pointer;
margin-top: 20px;
}
h1 {
color: #333;
}
#btn:hover {
background-color: darkblue;
}