-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (95 loc) · 1.92 KB
/
Copy pathstyle.css
File metadata and controls
120 lines (95 loc) · 1.92 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,500;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,800;1,800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(47, 88%, 63%);
}
.container{
height: auto;
width: 24rem;
background-color: white;
font-family: 'Figtree';
font-size: 16px;
display: flex;
flex-direction: column;
align-items: flex-start;
max-width: 450px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-color: hsl(0, 0%, 7%);
border-style: solid;
border-width: 1px;
border-radius: 1.25rem;
box-shadow: 8px 8px;
}
.svg {
align-self: stretch;
border-radius:0.625rem;
margin: 1.5rem;
}
.content {
display: flex;
flex-direction: column;
align-items: flex-start;
align-self: stretch;
margin-left: 1.5rem;
margin-right: 1.5rem;
gap: 0.75rem;
}
.content h1{
font-size:24px;
font-weight: 800;
}
.content a{
text-decoration: none;
color:black;
}
.content a:hover{
color:hsl(47, 88%, 63%);
}
.content p{
font-size: 16px;
font-weight: 500;
color: hsl(0, 0%, 50%);
}
.content small {
font-size: 14px;
font-weight: 500;
}
.content button, h2{
font-size: 14px;
font-weight: 800;
}
.content button{
border-style: none;
background-color: hsl(47, 88%, 63%);
border-radius: 0.25rem;
padding: 0.25rem 0.75rem;
}
.avatar{
width:2rem;
height:2rem;
margin-right: 12px;
}
.person {
margin-top:24px;
display: flex;
align-items: center;
margin-left: 1.5rem;
margin-right: 1.5rem;
margin-bottom: 1.5rem;
}
@media only screen and (max-width: 425px) {
.container {
height: 501px;
width: 90%;
display: flex;
flex-direction: column;
}
}