-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
145 lines (122 loc) · 3.19 KB
/
style.css
File metadata and controls
145 lines (122 loc) · 3.19 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
142
143
144
145
:root {
--deep-blue: #1f497d;
--water-mid: #5baed4;
--water-light: #b3e5fc;
--sky-soft: #e3f2fd;
--glass-white: rgba(255, 255, 255, 0.7);
--header-blue: #d2deef;
}
body {
font-family: 'Inter', sans-serif;
margin: 0;
color: var(--deep-blue);
background-color: var(--sky-soft);
line-height: 1.6;
}
.water-background {
position: fixed;
top: 0; left: 0; width: 100vw; height: 100vh;
background: linear-gradient(180deg, #e1f5fe 0%, #b3e5fc 100%);
z-index: -1;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 20px;
}
.hero {
background: linear-gradient(135deg, var(--deep-blue), var(--water-mid));
color: white;
text-align: center;
padding: 80px 20px;
border-bottom-left-radius: 50% 25px;
border-bottom-right-radius: 50% 25px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
h1 { font-family: 'Quicksand', sans-serif; font-size: 2.5rem; margin: 0; }
h2 { border-bottom: 3px solid var(--water-light); display: inline-block; margin-bottom: 20px; margin-top: 40px; }
h3 { color: var(--deep-blue); margin-bottom: 15px; }
.glass-card {
background: var(--glass-white);
backdrop-filter: blur(12px);
border-radius: 20px;
padding: 35px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
border: 1px solid white;
margin-top: -30px;
}
.table-container {
overflow-x: auto;
background: white;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.dimensions-table {
width: 100%;
border-collapse: collapse;
}
.dimensions-table th {
background: var(--header-blue);
color: var(--deep-blue);
padding: 15px;
text-align: left;
}
.dimensions-table td {
padding: 12px 15px;
border-bottom: 1px solid #eee;
}
.dimensions-table tr:nth-child(even) { background: #f2f5fa; }
.category-wrapper { margin-top: 50px; }
.taxonomy-item {
background: white;
border-radius: 10px;
margin-bottom: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
transition: transform 0.2s;
}
.taxonomy-item:hover { transform: scale(1.005); }
summary {
padding: 18px;
font-weight: 600;
cursor: pointer;
list-style: none;
display: flex;
justify-content: space-between;
}
summary::after { content: '▼'; color: var(--water-mid); font-size: 0.8rem; }
details[open] summary::after { content: '▲'; }
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 1px;
background: var(--water-light);
border-top: 1px solid #eee;
}
.info-cell {
background: white;
padding: 15px;
font-size: 0.9rem;
}
.info-cell strong {
display: block;
color: var(--water-mid);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 4px;
}
.reference-box {
border-left: 5px solid var(--water-mid);
padding: 15px;
background: rgba(255,255,255,0.5);
margin-top: 20px;
font-size: 0.95rem;
}
footer { text-align: center; padding: 80px 20px 40px; opacity: 0.7; font-size: 0.85rem; }
.fade-in {
animation: fadeIn 1s ease-in forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}