-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssStyle.css
More file actions
92 lines (80 loc) · 1.39 KB
/
cssStyle.css
File metadata and controls
92 lines (80 loc) · 1.39 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
* {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 15px;
}
body {
margin: 200px;
background-image: linear-gradient(
to right,
rgb(255, 125, 187),
rgb(176, 70, 206) 50%,
rgb(127, 125, 253)
);
}
.centralizador {
width: 300px;
margin-left: auto;
margin-right: auto;
}
.distribuicaoDiv {
display: flex;
flex-wrap: wrap;
}
button {
height: 50px;
width: 60px;
margin: 2px;
background-color: #c29afa59;
border-style: none;
color: white;
border-radius: 2px;
box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.226);
padding: 0;
border: none;
}
button:focus {
outline-color: white;
outline-style: outset;
outline-width: 0.5px;
}
#digEnter {
height: 104px;
}
#dig0 {
width: 124px;
}
#digBackspace svg {
width: 20px;
height: 13px;
margin: 0;
}
input {
height: 50px;
background-color: rgba(255, 255, 255, 0.699);
border-style: none;
text-align: right;
margin-left: 2px;
margin-right: 2px;
width: 252px;
box-sizing: border-box;
padding: 0px 5px;
font-size: 15px;
color: rgb(176, 70, 206);
}
::-webkit-input-placeholder {
color: rgb(176, 70, 206);
}
input:-moz-placeholder {
color: rgb(176, 70, 206);
}
#inputDeCima {
border-radius: 2px 2px 0px 0px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#inputDeBaixo {
border-radius: 0px 0px 2px 2px;
margin-bottom: 2px;
font-size: 30px;
}