-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (75 loc) · 1.49 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
body {
margin: 0;
padding: 0;
overflow: hidden;
font-family: Arial, Helvetica, sans-serif;
}
.column-layout {
display: flex;
gap: 1rem;
padding: 2rem;
height: 100vh;
box-sizing: border-box;
}
.column {
width: 33.33%;
min-width: 200px;
resize: horizontal;
overflow-x: auto;
overflow-y: auto;
background-color: #f5f5f5;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
scroll-behavior: smooth;
}
h2 {
color: #333;
margin-top: 0;
}
img {
width: 100%;
height: auto;
margin-bottom: 1rem;
border-radius: 4px;
display: block;
scroll-margin-top: 1.5rem;
}
.image-link {
color: #007bff;
text-decoration: none;
font-weight: 500;
}
.image-link:hover {
text-decoration: underline;
color: #0056b3;
}
@keyframes highlight {
0% {
transform: scale(1);
}
50% {
transform: scale(1.02);
}
100% {
transform: scale(1);
}
}
.highlight {
animation: highlight 0.5s ease-in-out;
}
.column::-webkit-scrollbar {
width: 8px;
height: 8px;
}
.column::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
.column::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
.column::-webkit-scrollbar-thumb:hover {
background: #555;
}