-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
109 lines (91 loc) · 1.49 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
106
107
108
109
:root {
--primary-color: #d6d6d6;
--font-color: #000000;
}
h2 {
margin: 0;
}
body {
background-color: var(--primary-color);
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: #333;
margin: 0;
padding: 0;
align-items: center;
text-align: center;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
margin: 0;
padding: 0;
color: var(--font-color);
}
.box {
width: 100%;
height: 15vh;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
margin-top: 200px;
}
.container {
width: 50%;
display: flex;
justify-content: space-around;
}
.card {
width: 90px;
height: 150px;
background-color: rgb(211, 206, 189);
}
.card img {
width: 90px;
height: 150px;
}
/* #start {
width: 100px;
height: 50px;
border-radius: 10px;
font-size: 1.5rem;
margin: 10px;
font-weight: 700;
color: var(--font-color);
cursor: pointer;
margin-top: 170px;
} */
.containerData {
display: flex;
justify-content: space-around;
margin-top: 200px;
}
.containerData>div {
display: flex;
height: 100px;
flex-direction: column;
justify-content: space-around;
}
.result {
opacity: 0;
}
.mainbtn button {
padding: 2px 10px;
font-size: 20px;
}
.hidden {
display: none;
}
.show {
display: block;
opacity: 1;
}
.win {
color: green;
font-size: 2rem;
}
.lose {
color: red;
font-size: 2rem;
}