-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
141 lines (123 loc) · 2.62 KB
/
Copy pathstyle.css
File metadata and controls
141 lines (123 loc) · 2.62 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
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
/* ===== Global Page Style ===== */
body {
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
margin: 0;
font-family: 'Segoe UI', Roboto, sans-serif;
color: #222;
}
h1 {
color: #1d4ed8; /* Indigo 700 */
text-align: center;
font-weight: 700;
letter-spacing: 1px;
margin-top: 20px;
}
/* ===== Main Layout ===== */
.flex-container {
display: flex;
justify-content: center;
gap: 25px;
margin: 20px 0;
}
.column-left {
display: flex;
flex-direction: column;
gap: 8px;
}
/* ===== Box Styles ===== */
#box1, #box2, #box3 {
display: flex;
align-items: center;
justify-content: center;
background: white;
border-radius: 10px;
border: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#box1:hover, #box2:hover, #box3:hover {
transform: translateY(-4px);
box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
#box1 {
width: 50vw;
height: 250px;
}
#box2 {
width: 50vw;
height: 300px;
position: relative;
}
.mol-container {
display: flex;
width: 100%;
height: 100%;
border-radius: 10px;
border: none;
position: relative;
}
#box3 {
width: 50vw;
height: 45px;
background: #f0f4f8;
font-weight: 600;
}
/* ===== Questions Section ===== */
.questions {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
padding: 20px;
}
.question-box {
background: white;
border-radius: 12px;
box-shadow: 0 4px 14px rgba(0,0,0,0.1);
padding: 12px;
width: 160px;
display: flex;
flex-direction: column;
gap: 10px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.question-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
/* Question header */
.option_header {
font-weight: bold;
color: #2563eb; /* Blue 600 */
text-align: center;
padding: 6px;
border-bottom: 2px solid #e5e7eb;
font-size: 14px;
}
.button-88 {
background-color: #2563eb;
color: white;
border: 0px;
font-size: 16px;
padding: 10px 10px;
border-radius: 12px;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.button-88:hover {
background-color: rgb(139, 139, 139);
border: 1px solid rgb(17, 0, 255);
}
#next_button {
background-color: #058009;
color: white;
border: 0px;
font-size: 16px;
padding: 10px 100px;
border-radius: 12px;
justify-items: center;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.next_bu {
display: flex;
justify-content: center;
}