-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom-number-css.css
79 lines (74 loc) · 1.4 KB
/
random-number-css.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.main-bg{
background-color: gray;
text-align: center;
padding: 20px;
border-radius: 20px;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 700px;
padding: 20px;
}
.input-row{
display: flex;
}
.cell {
border: none;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
text-align: center;
cursor: pointer;
}
.cell:active {
outline: none;
}
.btn1{
border-bottom: 1px solid gray;
border-right: 1px solid gray;
}
.btn2 {
border-bottom: 1px solid gray;
border-right: 1px solid gray;
border-left: 1px solid gray;
}
.btn3 {
border-bottom: 1px solid gray;
border-left: 1px solid gray;
}
.btn4 {
border-top: 1px solid gray;
border-bottom: 1px solid gray;
border-right: 1px solid gray;
}
.btn5 {
border: 1px solid gray;
}
.btn6 {
border-top: 1px solid gray;
border-bottom: 1px solid gray;
border-left: 1px solid gray;
}
.btn7 {
border-top: 1px solid gray;
border-right: 1px solid gray;
}
.btn8 {
border-top: 1px solid gray;
border-right: 1px solid gray;
border-left: 1px solid gray;
}
.btn9 {
border-top: 1px solid gray;
border-left: 1px solid gray;
}