-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
83 lines (72 loc) · 1.15 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
body {
background-color: #51c2d5;
}
h1 {
font-family: 'Potta One', cursive;
color: #ff577f;
margin: 30px;
text-shadow: 5px 0 #232931;
text-align: center;
font-size: 6rem;
}
.container {
width: 70%;
margin: auto;
text-align: center;
}
.dice {
text-align: center;
display: inline-block;
}
p {
font-family: 'Indie Flower', cursive;
font-size: 2rem;
color: #ff577f;
}
img {
width: 80%;
}
.btn {
text-align: center;
margin: 2%;
padding: 10px;
color: #11698e;
font-family : 'Indie Flower', bold;
}
button {
background: #ec4646;
font-size: 20px;
}
button:hover {
background: #008891;
color: #583d72;
font-size: 25px;
}
footer {
margin-top: 5%;
color: #11698e;
text-align: center;
font-family: 'Hachi Maru Pop', cursive;
}
@media (max-width:500px) {
h1 {
font-size: 3.5rem;
text-align: center;
overflow-x: hidden;
}
.dice{
text-align: centre;
display: inline;
}
footer {
text-align: center;
margin-top: 8%;
}
img{
width: 30%;
padding: 10px;
}
button{
font-size: 15px;
}
}