-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
executable file
·172 lines (148 loc) · 3.09 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400&family=Be+Vietnam+Pro:wght@400;500;700&family=Jost:wght@200;300;500&family=Montserrat:wght@300;400;500&family=Poppins:wght@200;300;400;500&family=Quicksand:wght@300;400;500;600;700&display=swap");
/* General Styles */
body {
background-color: rgb(255, 255, 255);
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
/* Header Styles */
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 10px;
background-color: #ff7300;
border-bottom: 2px solid #ddd;
}
.header-logos {
display: flex;
align-items: center;
width: 100%;
justify-content: space-between;
}
.logo-left {
max-height: 100px; /* Adjust the height of the left logo */
}
.logo-right {
display: flex;
align-items: center;
}
.logo-right-img {
max-height: 50px; /* Adjust the height of the right logos */
margin-left: 10px; /* Space between the right logos */
}
h2 {
margin: 0;
font-size: 24px; /* Adjust font size of header text */
color: #000000; /* Font color for the header text */
font-family: "Barlow Semi Condensed", sans-serif;
text-align: center;
}
main {
max-width: 1200px;
margin: 20px auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row-reverse;
text-align: center;
}
img {
width: 300px;
}
.content {
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
margin: 2rem 3rem;
text-align: left;
color: #505252;
}
#generate-form {
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.inputfield,
.selected {
border: 2px solid #5052525d;
padding: 10px;
border-radius: 0.2rem;
}
.radio-group {
border: 2px solid #5052525d;
padding: 10px;
border-radius: 0.2rem;
margin-top: 1rem;
}
.radio-group label {
display: block;
margin: 0.5rem 0;
}
.submit {
padding: 10px;
border-radius: 0.2rem;
font-size: 1rem;
border: 2px solid #9a49025d;
background-color: #ff6a00;
color: #fff;
}
.submit:hover {
background-color: #994000;
}
.reset {
padding: 10px;
border-radius: 0.2rem;
font-size: 1rem;
border: 2px solid #5052525d;
background-color: #0160c7;
color: #fff;
margin-top: 1rem;
}
.reset:hover {
background-color: #a00000;
}
/* spinner */
.loader {
margin: 10px auto;
border: 1rem solid #ff862a;
border-radius: 50%;
border-top: 1rem solid #ff6a00;
width: 3rem;
height: 3rem;
display: none; /* Hide initially */
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#qrcode {
margin: auto;
max-width: 1200px;
width: max-content;
}
.download-btn {
display: block;
width: 20%;
text-align: center;
background-color: #d42c02;
margin: 20px auto;
padding: 10px 30px;
border-radius: 5px;
text-decoration: none;
color: #fff;
font-weight: bold;
}
@media screen and (max-width: 600px) {
main {
flex-direction: column;
}
}