-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (71 loc) · 1.2 KB
/
style.css
File metadata and controls
73 lines (71 loc) · 1.2 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(16, 16, 78);
color: wheat;
display: flex;
padding: 20px;
justify-content: center;
align-items: center;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.card-container {
padding: 10px;
width: 100%;
max-width: 400px;
}
.card {
display: flex;
background-color: #1e1e2f;
border-radius: 16px;
padding: 24px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
flex-direction: column;
overflow: hidden;
}
.card-image {
background-image: url("image-header-desktop.jpg");
background-size: cover;
background-position: center;
height: 80px;
/* width: 80px; */
}
.card-content {
padding: 24px;
word-wrap: break-word;
max-width: 100%;
}
h1 {
font-size: 1.5rem;
line-height: 1.4;
margin-bottom: 16px;
}
.highlight {
color: purple;
font-weight: 600;
}
.card p {
font-size: 0.95rem;
color: #ccc;
margin-bottom: 20px;
}
.stat {
display: flex;
justify-content: space-between;
text-align: center;
flex-wrap: wrap;
}
.stat h2 {
margin: 0;
font-size: 1.25rem;
color: #bbb;
}
.stat p {
margin: 4px 0 0;
font-size: 0.85rem;
}
/* desktop styles */
@media (min-width: 768px);