-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (65 loc) · 1.28 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body{
display: flex;
justify-content: center;
align-items: center;
background-color: #0d1435;
color: white;
height: 600px;
}
form{
height: 32rem;
width: 26rem;
display: flex;
align-items: center;
background-color: white;
color: black;
flex-direction: column;
overflow: hidden;
border-radius: 10px;
}
.heading{
text-align: center;
background: rgb(8, 84, 109);
color: white;
margin: 0;
margin-bottom: 20px;
padding: 10px 0;
width: 100%;
}
#website{
width: 80%;
height: 30px;
outline: none;
border: none;
background: rgb(183, 183, 183);
padding: 5 10px;
margin-bottom: 20px;
}
input {
font-family: poppins;
transition: 0.3s;
border-radius: 6px;
border: none;
outline: none;
}
.generateBtn{
width: 85%;
height: 33px;
padding: 10 20px;
background: rgb(29, 142, 139);
color: rgb(255, 255, 255);
border-radius: 7px;
border: none;
outline: none;
cursor: pointer;
margin: 20px;
font-weight: 400;
font-size: 20px;
}
.generateBtn:hover{
background: #214569;
}
.generateBtn:active{
transform: scale(0.98);
}