-
Notifications
You must be signed in to change notification settings - Fork 0
/
lstyle.css
56 lines (48 loc) · 999 Bytes
/
lstyle.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
.developer-section {
width: 80%;
margin: auto;
text-align: center;
padding-top: 100px;
}
.developer-section .row {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
}
.developer-card {
flex-basis: 45%;
background-color: #f0f0f0;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.developer-card h2 {
font-size: 24px;
margin-bottom: 10px;
}
.developer-card p {
font-size: 16px;
margin-bottom: 10px;
}
.yt-link {
display: inline-block;
text-decoration: none;
color: #1E293B;
border: 1px solid #1E293B;
padding: 10px 20px;
border-radius: 5px;
transition: all 0.3s ease;
}
.yt-link:hover {
background-color: #1E293B;
color: #fff;
}
@media (max-width: 768px) {
.developer-section .row {
flex-direction: column;
}
.developer-card {
flex-basis: 100%;
}
}