-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (56 loc) · 1.01 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: antiquewhite;
/* border: 1px solid black; */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.main{
display: flex;
/* width: 50vh; */
flex-direction: column;
border: 1px solid black;
height : 70vh;
width: 80vh;
border-radius: 20px;
}
.main h1{
/* display: block; */
padding: 20px;
margin-bottom: 5px;
text-align: center;
background-color: black;
color: white;
border-radius: 20px 20px 0px 0px;;
}
.qr-input{
width: 90%;
margin: 20px;
padding: 15px;
border-radius: 10px;
border: none;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.qr-button{
width: 90%;
margin: 20px;
margin-top: 1px;
padding: 15px;
border-radius: 10px;
border: none;
background-color: green;
color: white;
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}
.qr-img{
width: 150px;
height: 150px;
margin: 20px auto; /* This centers the image */
border: 1px solid black;
}