-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (66 loc) · 1.25 KB
/
styles.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
76
77
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
:root{
--primary : #6a2689e6;
--parimary-dark: #330348e5;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: "Poppins", sans-serif;
font-weight: 400;
/* background-color: var(--primary); */
}
.container{
background-color: var(--primary);
height: 100vh;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.box{
width:auto;
padding: 20px 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: px;
background-color: white;
border-radius: 8px;
line-height: 30px;
margin: 10px 20px;
}
.heading{
margin: 0px 50px;
}
input{
padding: 8px;
border: 1px solid black;
width: 100%;
margin: 10px 0px;
}
.btnclass{
padding:10px ;
background-color: var(--parimary-dark);
color: white;
border: none;
width: 100%;
}
.btnclass:hover{
cursor: pointer;
}
.btnclass:active{
background-color: var(--primary);
}
.qr{
padding: 10px;
border: 1px solid black;
width: 100%;
display: flex;
justify-content: center;
transition: 0.7s ease-in;
}