-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle-dark.css
More file actions
116 lines (98 loc) · 1.71 KB
/
Copy pathstyle-dark.css
File metadata and controls
116 lines (98 loc) · 1.71 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
92
93
94
95
96
97
98
99
100
*{
margin: 0;
padding: 0;
user-select: none;
box-sizing: border-box;
}
html,body{
height: 100%;
}
body{
display: grid;
place-items: center;
background: #040210fc;
}
kbd{
color: #3498db;
}
.head-1 input{
margin-top: 20px;
margin-left: 60px;
background: #040210fc;
border: #040210fc;
color: #3498db;
width: 120px;
height: 40px;
box-shadow: -3px -3px 7px #0e0939,
2px 2px 5px rgba(14, 9, 57, 1);
}
.calculator{
width: 330px;
background: #040210fc;
padding: 40px 30px;
border-radius: 10px;
box-shadow: -3px -3px 7px #0e0939,
2px 2px 5px rgba(14, 9, 57, 1 );
}
form .result{
height: 60px;
width: 100%;
background: #040210fc ;
box-shadow: inset -3px -3px 7px #0e0939,
inset 2px 2px 5px rgba(14, 9, 57, 1 );
}
.result input{
cursor: pointer;
width: 100%;
height: 100%;
background: none;
border: none;
outline: none;
font-size: 30px;
color: #595959;
pointer-events: none;
padding: 0 20px;
text-align: right;
font-weight: 500;
}
form .buttons{
text-align: center;
padding: 30px 0 0 0;
}
.buttons input[type="button"]{
height: 56px;
width: 56px;
font-size: 23px;
margin: 4px;
background: #040210fc;
border: none;
outline: none;
color: #595959;
border-radius: 5px;
box-shadow: -3px -3px 7px #0e0939,
2px 2px 5px rgba(14, 9, 57, 1);
}
.buttons input[type="button"]:focus{
color: #3498db;
transform: scale(0.9);
box-shadow: inset -3px -3px 7px #0e0939,
inset 2px 2px 5px rgba(14, 9, 57, 1 );
}
/*7, 20, 44, 0.79*/
footer{
margin-top: 20px;
width: 100%;
height: 40px;
text-align: center;
color: #3498db;
}
footer kbd{
font-size: 15px;
}
/* @media only screen and (max-width: 700px){
.head-1 input{
margin-top: 50px;
margin-left: 80px;
}
}
*/