-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (67 loc) · 1.3 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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
* {
margin: 0;
padding: 0;
}
:root {
--White: hsl(0, 0%, 100%);
--Light-gray: hsl(212, 45%, 89%);
--Grayish-blue: hsl(220, 15%, 55%);
--Dark-blue: hsl(218, 44%, 22%);
}
body {
background-color: hsl(220, 15%, 55%);
font-family: 'Outfit', sans-serif;
}
.app .attribution {
position: relative;
right: 0.19vw;
bottom: -13.43vh;
}
.container {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
/* align-content: center; */
background-color: var(--White);
border-radius: 1vh;
width: 21vw;
height: 70vh;
padding: 2vh;
margin: auto;
position: relative;
top: 11vh;
}
.img2 {
/* height: 273px; */
height: 40vh;
/* width: 295px; */
width: 19vw;
border-radius: 1vh;
/* padding-top: 6vh; */
position: relative;
top:1vh;
}
.para {
padding: 1vh 1vw;
}
.para1 {
font-size: 1.49vw;
font-style: bold;
color: var(--Dark-blue);
text-align: center;
padding-bottom: 1vh;
}
.para2 {
font-size: 1.2vw;
text-align: center;
}
.attribution {
font-size: 13px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}