-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStyle.css
76 lines (76 loc) · 1.49 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#input_a, #input_b, #input_c{
width: 75px;
height: 20px;
border: #005bbb solid 1px;
color: #005bbb;
text-align: center;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{
-webkit-appearance: none;
}
#solvebutton{
transition: all .5s;
font-family: Sans-Serif;
border: #005bbb solid 2px;
background: #005bbb;
color: white;
border-radius: 2px;
width: 130px;
height: 30px;
text-align: center;
padding-top: 10px;
}
#solvebutton:hover{
transition: all .5s;
background: white;
color: #005bbb;
cursor: pointer;
}
.btnlng{
transition: all .5s;
font-family: Sans-Serif;
border: #005bbb solid 2px;
background: #005bbb;
color: white;
border-radius: 2px;
width: 60px;
height: 30px;
text-align: center;
padding-top: 10px;
float: left;
margin-right: 5px;
}
.btnlng:hover{
transition: all .5s;
background: white;
color: #005bbb;
cursor: pointer;
}
.text{
font-family: Sans-Serif;
font-size: 20px;
color: #005bbb;
}
#line{
width: 2px;
background: #005bbb;
position: absolute;
margin-left: 145px;
}
#inside{
width: fit-content;
}
#solved{
visibility: hidden;
position: absolute;
margin-left: 158px;
}
#info{
position: fixed;
bottom: 0;
right: 0;
}
#gitlink:link, #gitlink:visited, #gitlink:active{
color: #005bbb;
}