-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPYQ.css
More file actions
65 lines (65 loc) · 1.26 KB
/
PYQ.css
File metadata and controls
65 lines (65 loc) · 1.26 KB
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
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(to right, #1e3c72, #2a5298);
color: white;
}
.container {
width: 90%;
max-width: 700px;
background: rgba(255, 255, 255, 0.2);
padding: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
border-radius: 15px;
text-align: center;
backdrop-filter: blur(10px);
}
h2 {
margin-bottom: 20px;
font-size: 26px;
}
select {
width: 90%;
padding: 10px;
margin: 10px 0;
border-radius: 8px;
border: none;
font-size: 16px;
text-align: center;
}
.btn {
display: block;
width: 90%;
padding: 12px;
margin: 10px auto;
background: rgba(255, 255, 255, 0.3);
color: white;
text-decoration: none;
border-radius: 8px;
font-size: 18px;
font-weight: bold;
transition: 0.3s;
}
.btn:hover {
background: rgba(255, 255, 255, 0.5);
}
#paperLinks {
display: none;
margin-top: 15px;
}
@media (max-width: 600px) {
.container {
width: 95%;
}
h2 {
font-size: 22px;
}
.btn {
font-size: 16px;
}
}