-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (56 loc) · 1007 Bytes
/
style.css
File metadata and controls
69 lines (56 loc) · 1007 Bytes
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
/* Website for RockBottom
Author: Hanna Koh
Date: 2/26-27/2022 */
@font-face {
font-family: Dogica;
src: url(fonts/dogica.ttf);
}
@font-face {
font-family: Dogica;
src: url(fonts/dogicabold.ttf);
font-weight:bold
}
*{
font-family: 'Dogica', monospace;
font-size:20px;
list-style:none;
line-height: 1.6;
padding:0;
margin-left: 5vw;
margin-right: 5vw;
color: #281a36;
}
body{
background-color: #ebe3ff;
}
p{
line-height: 1.6;
}
header{
font-size: 40px;
font-weight: bold;
}
h2{
font-size: 25px;
font-weight: bold;
}
h3{
font-size: 20px;
font-weight: bold;
}
button{
line-height: 1.6;
height: 4em;
width: 12em;
display:block;
margin:auto;
text-align: center;
border-radius:15px;
border: none;
background-color: rgb(130, 95, 118);
color:#ffe0e1;
}
iframe{
display:block;
margin:auto;
}