-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
116 lines (110 loc) · 2.39 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
*{
margin:0;
padding:0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: #900dc4;
justify-content: center;
align-items: center;
display: flex;
min-height: 100vh;
}
.box{
background-color: white;
padding-top: 30px;
padding: 30px;
height: 300px;
transition: all 3s ease;
overflow: hidden;
}
.active{
transition: height 1s ease;
height: 550px;
}
.box h2{
margin-bottom: 40px;
text-align: center;
font-size: 26px;
color: #ca09db;
font-family: sans-serif;
text-transform: capitalize;
}
input {
padding: 20px;
user-select: none;
height: 50px;
width: 400px;
border-radius: 6px;
border: none;
border: 2px solid #900dc4;
outline: none;
font-size: 22px;
}
input::placeholder{
font-size: 23px;
}
.parent_class{
display: flex;
justify-content: center;
align-items: center;
}
#button,#button2 {
font-family: sans-serif;
font-size: 15px;
margin-top: 40px;
border: 2px solid #900dc4;
font-size: 16pt;
font-weight: bold;
font-family: 'arial-black';
text-align: center;
background-color: #900dc4;
display: flex;
padding: 10px;
color: rgb(255, 255, 255);
justify-content: center;
align-items: center;
cursor: pointer;
border-radius: 5px;
margin-top: 8px;
margin-bottom: 40px;
transition: 0.5s;
}
#button:hover{
background: #590a79;
transition: 0.5s;
}
#button2{
background: #590a79;
transition: 0.5s;
}
.qr-parent{
display: flex;
justify-content: center;
}
.btncontain{
display:flex;
justify-content: center;
}
.btncontain button{
font-family: sans-serif;
font-size: 15px;
border: 2px solid #900dc4;
font-size: 16pt;
font-weight: bold;
font-family: 'arial-black';
text-align: center;
background-color: #900dc4;
display: flex;
padding: 10px;
color: rgb(255, 255, 255);
justify-content: center;
align-items: center;
cursor: pointer;
border-radius: 5px;
margin-top: 8px;
transition: 0.5s;
display: block;
}