-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
107 lines (89 loc) · 1.55 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
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
html {
box-sizing: border-box;
background-color: #f9f0ff;
font-size: 16px;
background-image: url('assets/images/background-pattern-desktop.svg');
background-repeat: no-repeat;
font-family: 'Work Sans', sans-serif;
}
*, *:before, *:after {
margin: 0;;
box-sizing: inherit;
}
#main-container {
/* border: 3px black solid; */
height: auto;
width: 560px;
border-radius: 10px;
box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.3);
background-color: white;
margin: 10% auto;
}
#top-container {
/* border: 2px red solid; */
height: 20%;
padding: 30px 20px;
display: flex;
align-items: center;
}
#top-container h1 {
font-weight: 700;
}
.star {
margin-right: 15px;
}
#bottom-container {
/* border: 2px blue solid; */
height: 80%;
padding-left: 20px;
padding-right: 20px;
}
#bottom-container h4 {
font-weight: 600;
}
.accordion {
height: 25%;
}
.question {
padding: 20px 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.expand-sign {
align-self: flex-start;
}
#answer-1 {
padding: 20px 10px;
padding-top: 0;
display: none;
}
#answer-2 {
padding: 20px 10px;
padding-top: 0;
display: none;
}
#answer-3 {
padding: 20px 10px;
padding-top: 0;
display: none;
}
#answer-4 {
padding: 20px 10px;
padding-top: 0;
display: none;
}
p {
opacity: 0.6;
}
.minus {
display: none;
}
.plus {
display: block;
}
@media (max-width: 375px) {
html {
padding: 50px 5%;
}
}