-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (73 loc) · 1.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200&display=swap');
:root {
--cyan: hsl(193, 38%, 86%);
--neonGreen: hsl(150, 100%, 66%);
--grayishBlue: hsl(217, 19%, 38%);
--darkGraBlue: hsl(217, 19%, 24%);
--darkBlue: hsl(218, 23%, 16%);
}
body {
background-color: var(--darkBlue);
}
.parent {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
width: 500px;
border-radius: 10px;
background-color: var(--darkGraBlue);
}
.mb-2 {
margin-bottom: 20px;
}
.titleContainer {
padding-top: 10px;
font-family: 'Manrope', sans-serif;
color: var(--neonGreen);
text-align: center;
letter-spacing: 5px;
font-size: 0.4rem;
}
.adviceContainer {
font-family: 'Manrope', sans-serif;
color: var(--cyan);
text-align: center;
font-size: 1.5rem;
font-weight: 800;
letter-spacing: 0.1rem;
}
.devider {
margin-bottom: 50px;
}
@media only screen and (max-width:470px) {
.container {
width: 340px;
}
}
.roll {
background-color: var(--neonGreen);
width: 50px;
height: 50px;
border-radius: 70%;
border: none;
}
.roll img {
padding-top: 2px;
width: 20px;
}
.roll:hover {
box-shadow: 0 0px 20px var(--neonGreen);
}
.dice {
position: relative;
bottom: 25px;
}