-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (85 loc) · 1.4 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
background-color: #35654D;
}
.container {
width: 70%;
margin: auto;
text-align: center;
}
h1 {
margin: 30px;
font-family: 'Lobster', cursive;
text-shadow: 5px 0 #232931;
font-size: 8rem;
color: white;
}
.dice {
text-align: center;
display: inline-block;
margin: 10px;
padding: 10px;
}
p {
font-size: 2rem;
color: white;
font-family: 'Indie Flower', cursive;
margin-bottom: 64px;
}
img {
width: 70%;
}
.play-button {
border: none;
padding: 10px 20px;
border-radius: 10%;
text-align: center;
text-decoration: none;
display: block;
margin: 25px auto;
font-size: 1.5rem;
font-weight: 900;
background-color: white;
color: #35654D;
}
footer {
margin-top: 5%;
color: white;
text-align: center;
font-family: 'Indie Flower', cursive;
}
a {
text-decoration: none;
color: white;
}
a:hover {
font-weight: 900;
font-size: 1.5rem;
}
@media (max-width: 768px) {
.container {
width: 95%;
margin: auto;
text-align: center;
}
h1 {
margin: 10px;
font-size: 2rem;
}
.dice {
margin: 5px;
padding: 5px;
}
p {
font-size: 1.25rem;
margin-bottom: 16px;
}
.responsive {
max-width: 50%;
}
.play-button {
padding: 5px 10px;
margin: 25px auto;
font-size: 1.25rem;
font-weight: 800;
}
}