-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (57 loc) · 963 Bytes
/
styles.css
File metadata and controls
68 lines (57 loc) · 963 Bytes
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
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Outfit, sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: rgba(214, 226, 240, 1);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
max-width: 360px;
}
.card {
background-color: rgba(255, 255, 255, 1);
padding: 18px;
border-radius: 15px;
text-align: center;
}
.card img {
width: 100%;
border-radius: 10px;
}
.text {
}
.text h2 {
padding: 10px 20px;
color: rgba(31, 50, 81, 1);
font-weight: 700;
}
.text p {
font-size: 15px;
padding: 5px 30px;
color: rgba(104, 119, 141, 1);
}
.attribution {
font-size: 10px;
text-align: center;
}
.attribution a {
text-decoration: none;
color: rgba(104, 119, 141, 1);
}
.attribution a:hover {
color: rgba(74, 128, 242, 1);
}
.attribution a:active {
color: rgba(255, 0, 0, 1);
}