-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
49 lines (44 loc) · 928 Bytes
/
styles.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
#appBg {
height: 420px;
width: 300px;
border: 1px solid black;
border-radius: 5px;
}
#appBg form {
height: 100%;
width: 100%;
background-color: rgb(0, 0, 0);
}
#appBg input[type=textfield] {
height: 25%;
width: 100%;
cursor: default;
font-family: 'Roboto', sans-serif;
background-color: rgb(0, 0, 0);
color: white;
padding: 15px;
text-align: right;
font-size: 50px;
border: 0;
outline: none;
}
#appBg input[type=button], input[type=reset] {
width: 22%;
cursor: pointer;
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size: 26px;
color: black;
padding: 18px;
margin: 3px;
border: 0;
border-radius: 100%;
}
#appBg .orange {
background-color: rgb(253, 149, 3) !important;
color: white !important;
}
#appBg .gray {
background-color: rgb(51, 51, 51) !important;
color: white !important;
}