-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindNumber.css
90 lines (74 loc) · 1.25 KB
/
findNumber.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
#title {
display: flex;
justify-content: center;
}
#directions {
display: flex;
justify-content: center;
}
#question {
text-align: center;
}
#show-shape{
display: flex;
justify-content: center;
}
.shape {
float: left;
margin: 1%;
}
.square {
background-color: red;
border-radius: 10%;
}
.square-small {
width: 75px;
height: 75px;
}
.square-big {
width: 150px;
height: 150px;
display: flex;
justify-content: center;
}
.triangle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
}
.triangle-small {
border-bottom: 100px solid red;
}
.triangle-big {
border-left: 75px solid transparent;
border-right: 75px solid transparent;
border-bottom: 150px solid red;
display: flex;
justify-content: center;
}
.circle {
background: red;
border-radius: 50%
}
.circle-small {
width: 100px;
height: 100px;
}
.circle-big {
width: 150px;
height: 150px;
display: flex;
justify-content: center;
}
#number-container {
border: solid black 2px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.number {
color: white;
font-size: 5em;
font-weight: 600;
}