This repository was archived by the owner on Apr 18, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (67 loc) · 1.3 KB
/
style.css
File metadata and controls
79 lines (67 loc) · 1.3 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
body {
background-color: #e9c46a;
font-family: "MongoDB Value Serif", sans-serif;
margin: 0;
padding: 0;
color: #333;
font-size: 1.2rem;
}
@font-face{font-family:MongoDB Value Serif;src:url(https://static.mongodb.com/com/fonts/MongoDBValueSerif-Regular.woff2) format('woff2');font-weight:normal;font-display:swap;}
header {
text-align: center;
padding: 20px;
background-color: #2a9d8f;
color: white;
}
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.hero {
background-color: white;
padding: 20px;
border: 1px solid #ccc;
margin-bottom: 20px;
}
.hero img {
width: 100%;
height: auto;
}
.card-container {
display: flex;
gap: 20px;
}
.card {
background-color: white;
padding: 20px;
flex: 1;
border: 1px solid #ddd;
margin-bottom: 50px;
}
.card img {
width: 100%;
height: 300px;
}
.buttons {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
text-align: center;
margin-top: 10px;
}
.button-link:hover {
background-color: #0056b3;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
background-color: #2a9d8f;
color: white;
padding: 10px 0;
}