-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (114 loc) · 1.96 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
* {
margin: 0;
padding: 0;
font-family: "arial";
}
body {
background: linear-gradient(180deg, #8bc6ec 0%, #9599e2 100%);
text-align: center;
}
.main {
text-align: center;
width: 60%;
margin: 6.2rem auto;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 2rem;
/* height: 550px; */
display: flex;
justify-content: center;
}
.active {
background-color: rgba(255, 255, 255, 0.5);
transition: background-color 1s;
@keyframes slide-in-left {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
}
.player {
display: inline-block;
padding: 5rem 9rem;
width: 25%;
border-radius: 2rem;
}
div.player > h1 > input {
font-size: 2rem;
margin-bottom: 2rem;
font-weight: 700;
width: 70%;
background-color: rgba(255, 255, 255, 0.2);
border: none;
padding: 10px;
text-align: center;
letter-spacing: 0.2rem;
border-radius: 2rem;
}
input:focus-visible {
outline: none;
}
div.player > .total-score {
color: #9599e2;
font-size: 5rem;
margin-bottom: 4rem;
font-weight: 700;
}
.current-score {
background-color: #9599e2;
padding: 1rem 2rem;
width: 50%;
margin: 10rem auto 4rem;
border-radius: 2rem;
}
.current-score > p {
margin-bottom: 1rem;
}
.current-score > .score {
font-size: 3rem;
font-weight: 700;
}
.btn {
position: absolute;
padding: 10px 20px;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 2rem;
cursor: pointer;
/* margin: auto; */
}
.btn:hover {
background-color: rgba(255, 255, 255, 1);
}
.new-game {
top: 25%;
left: 46%;
}
.hold {
top: 68%;
left: 47%;
}
.roll-dice {
top: 60%;
left: 46%;
}
.dice {
position: absolute;
width: 150px;
height: 150px;
left: 46%;
top: 37%;
background-size: cover;
transition: all 0.3s ease-in-out;
}
.winner {
background-color: rgba(144, 255, 154, 0.733);
}
footer {
padding: 1rem;
}
footer > p > a {
text-decoration: none;
}