-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (50 loc) · 844 Bytes
/
style.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
body{
text-align: center;
display: flex;
flex-direction: column;
align-content: center;
}
.puzzle{
display: flex;
flex-direction: column;
align-items: center;
}
.row{
display: flex;
}
.row:nth-child(3n){
border-bottom: 3px solid black;
}
.cell{
display: flex;
justify-content: center;
align-items: center;
border:1px black solid;
width:4vw;
height:4vw;
font-weight: 900;
color:black;
}
.cell:nth-child(3n){
border-right: 3px solid black;
}
.candidates{
color:rgb(173, 60, 32);
font-size: 8px;
display:flex;
}
.output{
position: absolute;
top: 15%;
left: 5%;
display: flex;
flex-direction: column;
align-items: center;
font-size:26px;
}
.output>input{
width:10vw;
height:10vh;
font-size: 36px;
text-align: center;
}