-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (68 loc) · 1.25 KB
/
style.css
File metadata and controls
79 lines (68 loc) · 1.25 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
html {
--text: #ffffff;
--background: #000000;
--primary: #FA0085;
--secondary: #d7c900;
--accent: #04009f;
}
body {
color: var(--text);
background: var(--background);
font-size: larger;
}
img {
padding: 10px;
border: 10px solid var(--secondary);
border-radius: 1000px;
background: var(--primary);
width: 300px;
}
li,
p {
color: var(--secondary);
font-family: "Abyssinica SIL";
margin: 20px
}
h3 {
color: var(--accent);
font-family: "Ubuntu";
font-size: medium;
text-decoration: underline;
padding: 50px
}
h1,
h2 {
color: var(--primary);
font: bold 2em "Ubuntu", sans-serif;
font-size: 3rem;
padding: 25px;
height: 50px;
}
h2 {
padding:5px;
height: 10px;
}
audio {
border: 6px solid var(--accent);
border-radius: 100px;
margin: 20px
}
a {
color: var(--secondary);
font-family: "Abyssinica SIL";
font-weight: 1000;
font-size: x-large;
margin: 30px;
border: 2px solid var(--primary);
border-radius: 100px;
text-decoration:none;
background-color: var(--primary);
padding: 8px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.flex{
display:flex;
}