-
Notifications
You must be signed in to change notification settings - Fork 47
/
style.css
105 lines (88 loc) · 1.87 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
font-family: "Poppins", "sans-serif";
color: white;
text-align: center;
margin: 0;
background: #121212;
}
.container {
max-width: 90%; /* Increase the max-width for better responsiveness */
margin: 0 auto;
padding: 20px;
border-radius: 10px;
color: white;
/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
/* background: #333; */
}
h1,p{
color: white;
}
.content {
padding: 20px;
color: white;
}
h1, h2, h3 {
font-weight: 600;
padding-bottom: 0.3em;
color: #fff;
}
ul {
display: flex;
flex-wrap: wrap;
justify-content: center; /* Center the list items */
list-style: none;
margin: 0;
padding: 0;
}
li {
padding: 0.5em;
display: flex;
flex-direction: column;
/* background: #222; */
justify-content: center;
align-items: center;
margin: 15px;
min-width: 45%; /* Adjust the minimum width for responsiveness */
border-radius: 10px;
box-shadow: 0px 0px 5px 0px rgba(152, 154, 155, 0.75);
text-align: center;
font-size: 24px;
padding: 15px;
font-weight: 600;
color: #fff;
}
li a {
text-decoration: none;
color: #06b8ee;
}
li:hover {
box-shadow: 0 0 10px 0 rgba(6, 133, 236, 0.75);
}
a {
text-decoration: none;
color: #436fe6;
}
.center-text {
text-align: center;
margin-top: 45px;
color: #fff;
}
.container__content__heading,
.container__content__para,
.container__content__h2 {
text-align: center;
font-size: 45px;
color: #ffffff;
}
img {
max-width: 100%; /* Make images responsive within their containers */
max-height: 40vh;
object-fit: contain;
padding: 5px;
margin: 5px;
}
@media (min-width: 768px) {
img {
max-width: 400px; /* Adjust the max-width for larger screens */
}
}