-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (77 loc) · 1.45 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (77 loc) · 1.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
html,body{
margin: 0;
padding: 0;
height: 100%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: large;
background: rgb(39, 38, 38);
}
#root{
height: 100vh;
text-align: center;
}
#numBox{
margin-top: 10%;
margin-bottom: 2%;
width: 30vw;
height: 2rem;
outline: none;
font-weight: bold;
font-size: 1rem;
min-width: 30vw;
text-align: center;
border: 3px solid red;
border-radius: 30px 30px;
transition: border-color 5ms;
}
#numBox:focus,#numBox:hover{
border-color: yellow;
}
#checkBtn,
#newGameBtn{
width: 10rem;
height: 2rem;
font-size: 1rem;
margin-top: 2%;
margin-bottom: 1%;
text-align: center;
border-width: 3px;
border-radius: 20px 20px;
transition: border-color 5ms;
}
#checkBtn:hover,
#newGameBtn:hover{
border-color: yellow;
}
#result,p{
color:white;
}
#remChecks{
margin: 1%;
}
#game-box{
width: 55%;
position: absolute;
left: 20%;
top: 20%;
padding-bottom: 3%;
padding-right: 3%;
padding-left: 3% ;
background-color: black;
}
#settings{
display: none;
padding: 5%;
font-size: medium;
background-color: rgb(48, 47, 47);
}
#settings input{
width: 2rem;
text-align: center;
}
#image{
position: absolute;
right: 1%;
top:1% ;
cursor: pointer;
}