-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (62 loc) · 1.23 KB
/
styles.css
File metadata and controls
73 lines (62 loc) · 1.23 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
:root{
--bgcolour: rgb(207, 207, 186);
--textcolour: black;
--bordercolour: rgb(41, 42, 35);
--buttoncolour: rgb(255, 252, 235);
--mainfont: "Modern No. 20";
}
*{
background-color: var(--bordercolour);
color: var(--textcolour);
font-family: var(--mainfont);
}
h1{
display:flex;
justify-content: center;
margin: 5%;
padding: 5%;
background-color: var(--bgcolour);
font-size:xxx-large;
}
.dinotext{
display:flex;
justify-content: center;
margin: 5%;
padding: 5%;
width: 75%;
margin-left:7.5%;
background-color: var(--bgcolour);
font-size:xx-large;
}
#dinoname{
font-size: xx-large;
height:2vh;
}
.button{
display:block;
margin:auto;
padding: 5%;
font-size:xx-large;
background-color: var(--buttoncolour);
}
@media(min-width:1200px){
h1{
font-size:x-large;
margin: 2%;
padding: 2%;
}
.button{
font-size:x-large;
padding:2%;
}
.dinotext{
margin:2%;
padding:2%;
margin-left:10.5%;
height:2vh;
font-size: large;
}
#dinoname{
font-size:x-large;
}
}