-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (70 loc) · 1.52 KB
/
styles.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
:root {
--color-white: hsl(0, 0%, 100%);
--background-light-pink: hsl(275, 100%, 97%);
--text-grayish-purple: hsl(292, 16%, 49%);
--text-dark-purple: hsl(292, 42%, 14%);
--fw-400-sans-serif: 400;
--fw-600-sans-serif: 600;
--fw-700-sans-serif: 700;
}
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
font-family: "Work Sans", sans-serif;
background-repeat: no-repeat;
background-image: url("./assets/images/background-pattern-desktop.svg");
background-color: var(--background-light-pink);
height: 100vh;
display: grid;
place-content: center;
}
@media screen and (max-width: 375px) {
body {
background-image: url("./assets/images/background-pattern-mobile.svg");
}
h2 {
font-size: 0.875rem;
font-weight: var(--fw-600-sans-serif);
color: var(--text-dark-purple);
margin: 0;
padding:0;
}
h1 {
font-size: 1.5rem;
font-weight: var(--fw-700-sans-serif);
color: var(--text-dark-purple)
}
p {
font-size: .75rem;
font-weight: var(--fw-400-sans-serif);
color: var(--text-grayish-purple)
}
}
.faq-container {
align-content: center;
margin: 144px 23px;
padding: 27px 23px;
background-color: var(--color-white);
border-radius: 6px;
overflow: hidden;
}
.faq {
display:flex;
flex-direction: row;
justify-content: left;
align-items: "center";
}
.accordion-head {
display:flex;
flex-direction: row;
justify-content: left;
align-items: "center";
}