-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (60 loc) · 1.23 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;600&display=swap');
body{
font-family: 'Hind Siliguri', sans-serif;
padding: 0;
margin: 0;
background-color: lightcoral;
}
.heading {
letter-spacing: 0.5rem;
font-size: 5rem;
font-weight: 600;
color: brown;
text-align: center;
margin: auto;
padding: 0.5rem;
text-shadow: 5px 0 #232931;
transition: .8s;
}
.heading:hover {
color: rgb(31, 3, 3);
font-size: 5.5rem;
}
.dice_container {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 2rem;
}
.dice {
display: inline-block;
margin: 10px;
}
.footer{
background-color: blueviolet;
color: antiquewhite;
height: 40px;
padding: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.Result {
color: black;
font-size: 5rem;
text-align: center;
margin: 0;
transition: 0.3s;
}
.Result:hover{
font-size: 5.5rem;
border: 2px purple solid;
border-radius: 18px;
}
@media (width < 600px){
.dice_container {
display: flex;
flex-direction: column;
}
}