-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (73 loc) · 1.32 KB
/
style.css
File metadata and controls
77 lines (73 loc) · 1.32 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
*{
margin: 0;
padding: 0;
overflow: hidden;
}
body {
font-family: Arial, sans-serif;
overflow: hidden;
width: 100vw;
height: 100vh;
background-repeat: no-repeat;
background-size: cover;
object-fit: cover;
background-position: center center;
background-image: url("./img.jpg");
}
.container {
width: 450px;
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 20px;
background-color: #f9f9f945;
color: #fff;
text-align: center;
}
@media screen and (max-width: 480px) {
.container {
width: 300px;
}
}
h2{
margin-bottom: 15px;
}
input[type="text"] {
width: 92%;
padding: 14px;
margin: 10px 0;
border: 1px solid #ffffff;
border-radius: 8px;
}
button {
margin-top: 15px;
padding: 15px 40px;
background-color: #2a25f3;
color: white;
border: none;
border-radius: 35px;
cursor: pointer;
font-weight: 700;
font-size: 16px;
}
.result {
margin-top: 20px;
font-weight: bold;
}
a{
color: #fff;
}
.uxrishu{
color: #fff;
margin: 0 auto;
width: 100px;
position: absolute;
top: 95%;
left: 50%;
transform: translate(-50%, -50%);
border: 1px solid #ccc;
}