-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (84 loc) · 1.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
*{
margin: 0;
padding: 0;
box-sizing: border-box;}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #422147;
color: #fff;
text-align: center;
padding: 10px;
}
nav {
background-color: #444;
color: #fff;
text-align: center;
padding: 10px;
display: flex;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px;
margin: 0 10px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
#content {
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
#qr-code {
width: 300px;
height: 300px;
border: #333 dotted 2px;
border-radius: 5px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
}
label {
font-size: 1.2rem;
font-weight: bold;
}
input {
padding: 10px;
border: #333 dotted 2px;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
transition: 0.3s;
}
button {
padding: 10px;
background-color: #422147;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
font-weight: bold;
transition: 0.3s;
}
button:hover {
background-color: #b842ca;
color: #fff;
}