-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgen.css
More file actions
63 lines (56 loc) · 1.09 KB
/
gen.css
File metadata and controls
63 lines (56 loc) · 1.09 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: black ;
}
.box{
background:aqua;
padding: 30px;
padding-top: 30px;
border-radius:10px;
border: 3px solid linear-gradient(45deg, #eb9b06 , #bce70e ,#5307a9, #ef0606);
}
.box h2{
margin-bottom: 80px;
font-size: 50px;
color:pink;
}
input{
padding: 25px;
user-select: none;
height: 50px;
width: 600px;
border: 3px solid #bce70e;
outline: none;
font-size: 22px;
border-radius: 6px;
}
input:placeholder{
font-size: 22px;
}
#button{
font-family: 'Times New Roman', Times, serif;
font-size: 13px;
margin-top: 40px;
width: 155px;
border: 2px solid #bce70e;
height: 50px;
background: #ef0606;
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 7px;
cursor: pointer;
}
.btn2{
margin-left: 280px;
}