-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirstSiteStyling.css
73 lines (62 loc) · 1.25 KB
/
firstSiteStyling.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
@font-face {
font-family: 'Londrina Solid';
font-size: 30px;
font-display: auto;
src: url('assets/fonts/londrinasolid-regular-webfont.woff'); format:('woff'),
url('assets/fonts/londrinasolid-regular-webfont.woff2'); format:('woff2')
}
body {
background-color: #FEE715;
margin: 0 auto;
padding: 0 20px 20px 20px;
}
html {
font-size: 30px; /* px means "pixels": the base font size is now x pixels high */
font-family: 'Londrina Solid'; /* this should be the rest of the output you got from Google Fonts */
text-align: center;
color: #101820;
}
/* Aligns the heading text to the center. */
h1 {
text-align: center;
font-size: 30px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 25px;
}
ul, ol {
font-size: 25px;
}
p {
font-size: 20px;
}
.accordion {
background-color: #FEE715;
font-family: 'Londrina Solid';
color: #101820;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: center;
outline: none;
font-size: 30px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: coral;
border-style:dashed;
}
.panel {
padding: 0 18px;
display: none;
background-color: coral;
overflow: hidden;
border-style: dashed;
}
a, u {
text-decoration: none;
}