forked from LIN-KHU/javascript-cardgame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
106 lines (70 loc) · 1.13 KB
/
index.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
.card {
width: 80px;
height: 100px;
background: #F9A825;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 3px;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 24px;
color: #FFFFFF;
}
#cards {
display: flex;
gap: 10px;
position: absolute;
width: 365px;
height: 100px;
left: 458px;
top: 165px;
align-items: center;
justify-content: center;
}
#title1{
white-space: nowrap;
position: absolute;
width: 152px;
height: 24px;
left: 561px;
top: 97px;
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 24px;
color: #000000;
}
#rect{
position: absolute;
width: 410px;
height: 160px;
left: 435px;
top: 138px;
background: #FDD853;
border-radius: 10px;
}
.restart{
position: absolute;
width: 140px;
height: 48px;
left: 560px;
top: 200px;
background: rgba(255, 255, 255, 0.86);
border-radius: 10px;
}
.information{
white-space: nowrap;
position: absolute;
width: 82px;
height: 19px;
top: 150px;
justify-content: center;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
color: #000000;
}