-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (75 loc) · 1.47 KB
/
style.css
File metadata and controls
85 lines (75 loc) · 1.47 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url('Assets/BG.png');
background-size: cover;
background-position: center;
font-family: Arial, sans-serif;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 500px;
background-color: #f4d6de;
color: #ff007b;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
text-align: center;
border: 2px solid #ff007b;
}
h1 {
margin-bottom: 40px;
border: 1px solid #ff007b;
padding: 6px;
}
label {
display: block;
margin-top: 20px;
margin-bottom: 8px;
font-weight: bold;
font-size: 20px;
}
input {
width: 100%;
padding: 10px;
font-size: 16px;
color: #ff007b;
border: none;
}
input:focus {
outline: none;
border: 2px solid #ff007b;
}
button {
background-color: #ff007b;
color: #fff;
padding: 12px 24px;
border: none;
margin-top: 25px;
cursor: pointer;
border-radius: 5px;
font-weight: bold;
font-size: 16px;
transition: background-color 0.2s ease;
}
button:hover {
background-color: #ff3496;
}
#result {
margin-top: 30px;
font-size: 22px;
font-weight: bold;
display: none;
opacity: 0;
transition: opacity 0.8s ease-in-out;
}
#result.show {
display: block;
opacity: 1;
}