-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathstyle.css
102 lines (88 loc) · 1.93 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
/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
padding: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #141e30, #243b55);
}
.wrapper {
width: 440px;
padding: 30px;
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.wrapper img {
display: block;
margin: 0 auto; /* Center the image horizontally */
max-width: 100px;
filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}
.wrapper h1 {
font-size: 38px;
font-weight: 600;
margin: 30px 0;
color: #fff;
text-align: center; /* Center the text */
}
.wrapper .content {
display: flex;
justify-content: space-between;
gap:0.5rem;
}
.content.disable {
cursor: no-drop;
}
.content .column {
flex: 1; /* Make each column take up equal space */
padding: 5px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(255, 255, 255, 0.1);
transition: background 0.3s ease;
}
.content.disable .column {
opacity: 0.6;
pointer-events: none;
}
.column select {
width: 100%;
height: 53px;
border: none;
outline: none;
background: rgba(255, 255, 255, 0.2);
font-size: 18px;
color: #000000;
padding: 10px;
border-radius: 5px;
transition: background 0.3s ease;
}
.column select:hover {
background: rgba(255, 255, 255, 0.3);
}
.wrapper button {
width: 100%;
border: none;
outline: none;
color: #fff;
cursor: pointer;
font-size: 20px;
padding: 15px 0;
margin-top: 20px;
border-radius: 5px;
background: linear-gradient(135deg, #4a98f7, #3069b4);
transition: transform 0.3s ease;
}
.wrapper button:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}