-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (97 loc) · 2.01 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
* {
padding: 0;
margin: 0;
}
html{
background-color: #d9f4ff;
}
hr {
height: 2px;
background-color: aqua;
}
h1{
text-align: center;
color: #42474b;
height: 25px;
font-size: 50px;
padding: 35px;
}
.wrapper {
display: grid;
height: 600px;
grid-template-rows: 100px 1fr;
grid-template-columns: 1fr;
grid-gap: 1px;
}
.buttons {
display: grid;
grid-template-rows: repeat(5, 1fr);
grid-template-columns: repeat(4, 1fr);
grid-gap: 4px;
}
.container {
width: 425px;
height: 600px;
border: 2px solid black;
border-radius: 10px;
background-color: #000000;
margin: 0 auto;
padding: auto;
box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 2);
}
.inputArea {
background-color: #5b6d7c;
grid-column: 1/2;
display: block;
}
input[type="text"] {
box-sizing: border-box;
margin-top: 10px;
margin-left: 10px;
padding-top: 30px;
padding-right: 38px;
padding-bottom: 10px;
font-size: 30px;
background-color: rgb(218, 216, 216);
text-align: right;
border: 2px solid rgb(37, 37, 37);
border-radius: 8px;
}
/*
input[type=button]:hover {
background-color: #8c8c8c;
} */
input[type="text"]:disabled {
color:#000000;
}
.btnr1 {
background: #25292c;
text-align: center;
width: 102px;
}
.btnr2 {
background: #13171d;
text-align: center;
width: 102px;
}
.btnr1 > input {
background: transparent;
border: none;
justify-content: center;
align-self: end;
color: white;
font-size: 2.5em;
margin-top: 25px;
}
.btnr2 > input {
background: transparent;
border: none;
justify-content: center;
align-self: end;
color: white;
font-size: 2.5em;
margin-top: 25px;
}
.btnC > input {
color: #ff7a00 !important;
}