-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (98 loc) · 1.61 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (98 loc) · 1.61 KB
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
body {
background: url("utils/background.jpg") repeat center center fixed;
background-size: cover;
font-family: "Roboto Slab", serif;
color: white;
}
.score {
font-size: 35px;
position: fixed;
top: 10px;
left: 10px;
}
.flag {
padding: 12px;
border-top: 3px white solid;
background-color: rgba(0, 0, 0, 0.247);
backdrop-filter: blur(20px);
border-radius: 0 0 10px 10px;
box-shadow: 10px 10px 30px 20px rgba(0, 0, 0, 0.5);
position: fixed;
}
.rules {
top: 100px;
right: 10px;
width: 100px;
}
.leaderboard {
top: 100px;
left: 10px;
}
.leaderboard h2 {
margin-top: 0;
}
td {
max-width: 6rem;
overflow: hidden;
}
main {
text-align: center;
color: white;
}
.computer_hand,
.player_hand {
font-size: 3rem;
font-family: "Calistoga", cursive;
display: flex;
justify-content: center;
}
.control {
display: flex;
justify-content: space-evenly;
justify-items: center;
margin: 5rem;
color: white;
text-align: center;
}
.button {
background-color: tomato;
padding: 2rem;
width: 20rem;
font-size: 2rem;
border-radius: 1rem;
cursor: pointer;
}
.button:hover {
background-color: teal;
}
.message {
font-size: 2rem;
margin-top: 1rem;
}
.playerHand {
position: absolute;
bottom: 100px;
left: 43%;
}
.computerHand {
position: absolute;
top: 200px;
left: 43%;
}
.card {
color: black;
display: flex;
background-color: white;
padding: 1rem;
border-radius: 1rem;
align-items: center;
justify-content: center;
width: 10rem;
height: 15rem;
text-align: center;
font-size: 5rem;
margin: 0 0.5rem 0 0.5rem;
}
img {
height: 5rem;
}