-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.css
More file actions
75 lines (66 loc) · 1.18 KB
/
project.css
File metadata and controls
75 lines (66 loc) · 1.18 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
*{
padding: 0;
margin: 0;
}
body{
background-color: #B8B8FF;
text-align: center;
}
.container{
height: 70vh;
display: flex;
justify-content: center;
align-items: center;
}
.game{
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 1.5vmin;
}
.button{
height: 18vmin;
width: 18vmin;
border-radius: 1rem;
border: none;
font-size: 12vmin;
color: #1fb724;
background-color: rgb(238, 221, 189);
}
.reset{
padding: 1rem;
font-size: 1.25rem;
background-color: #1a888e;
border-radius: 1.5rem;
color: rgb(172, 141, 87);
border: none;
}
.headings{
color: rgb(8, 39, 150);
text-decoration: underline;
}
h4{
color: #F97068;
}
/* 1 vmin is min of 1vh and 1 vw of browser*/
.winning{
margin: 3vh;
color: rgb(108, 39, 198);
text-align: center;
font-size: 40px;
}
.new_game{
background-color: palevioletred;
margin-top: 20px;
margin-bottom: 20px;
padding: 3px;
border: none;
border-radius: 1.5rem;
height: 7vh;
width: 100px;
font-weight: bold;
font-size: 15 px;
}