-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (108 loc) · 2.31 KB
/
style.css
File metadata and controls
126 lines (108 loc) · 2.31 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
body {
font-family: 'Manrope', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
text-align: center;
font-weight: 700;
font-size: 20px;
padding-top: 50px;
scrollbar-color: var(--hr-color) var(--navbar-bg);
scrollbar-width: thin;
}
.jumbotron {
background-color: var(--jumbotron-bg);
padding: 100px 0;
margin-bottom: 0;
color: var(--text-color);
}
.feature-icon {
font-size: 40px;
margin-bottom: 20px;
color: var(--feature-icon-color);
}
.section-padding {
padding: 60px 0;
}
.download-section {
background-color: var(--jumbotron-bg);
padding: 60px 0;
}
.version-info {
margin: 20px 0;
}
.blog-list {
text-align: left;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.blog-post {
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
text-decoration: none !important;
color: var(--pre-text-color);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.blog-post-image {
width: 100%;
height: 180px;
object-fit: cover;
flex-shrink: 0;
}
.blog-post-content {
position: relative;
z-index: 2;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
flex-grow: 1;
background: var(--lmc-alert-bg);
}
.blog-post-title {
margin: 0 0 12px 0;
font-size: 22px;
transition: color 0.3s ease;
color: var(--text-color);
}
.blog-post-description {
margin: 0 0 15px 0;
font-weight: 300;
opacity: 0.9;
transition: color 0.3s ease;
font-size: 14px;
color: var(--pre-text-color);
}
.blog-post-date {
margin-top: auto;
font-size: 14px;
font-weight: 300;
opacity: 0.7;
transition: color 0.3s ease;
}
.blog-post-title,
.blog-post-description,
.blog-post-date {
transition: color 0.3s ease, filter 0.3s ease;
}
.blog-post:hover .blog-post-title,
.blog-post:hover .blog-post-description,
.blog-post:hover .blog-post-date {
filter: brightness(85%);
}
@media (max-width: 992px) {
.blog-list {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.blog-list {
grid-template-columns: 1fr;
}
}