-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (84 loc) · 1.4 KB
/
style.css
File metadata and controls
90 lines (84 loc) · 1.4 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 62.5%;
}
@font-face {
font-family: "Outfit";
src: url(design/Outfit/Outfit-VariableFont_wght.ttf) format("truetype");
}
@font-face {
font-family: "outfit-Light";
src: url(design/Outfit/static/Outfit-Light.ttf) format("truetype");
}
body {
font-family: "Outfit", sans-serif;
}
p {
margin: 0;
padding: 0;
margin-top: 1rem;
font-size: 1.5rem;
font-family: "outfit-Light", sans-serif;
}
h1 {
font-weight: 700;
font-size: 2rem;
margin: 1rem 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: rgba(214, 226, 240, 1);
}
.card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
width: 300px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: white;
}
.card img {
width: 100%;
height: auto;
border-radius: 7px;
margin-bottom: 5px;
}
.card h1 {
font-weight: 700;
}
@media (max-width: 375px) {
body {
margin: 0;
}
.container {
padding: 10% 14.5%;
}
.card {
width: 100%;
padding: 10px;
}
.card img {
width: 100%;
height: auto;
}
h1 {
font-size: 20px;
}
}
.attribution {
font-size: 1.1rem;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}