-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.css
147 lines (127 loc) · 2.6 KB
/
calculator.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
body {
font-family: 'Nosferatu',monospace;
background-image: url('https://i.gifer.com/IrF.gif');
background-color: #000000;
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
}
.container {
text-align: center;
padding: 20px;
height: 100vh;
}
.page-title {
font-family: Nosferatu;
color: #ffffff;
margin: 0 0 5px;
}
.page-subtitle {
color: #ffffff;
margin-top: 5px;
height: 20px;
}
*:focus {
outline: 0 !important;
}
.espaçamento {
margin: 0 auto;
height:20px;
}
.socialBar{
margin: 0 auto;
background-image: url('https://i.gifer.com/IrF.gif');
background-color: #5a5858;
display:flex;
width: 294px;
border-radius: 20px;
justify-content:center;
align-items:center;
}
.calculadora {
margin: 0 auto;
width: 294px;
background-image: url('https://i.gifer.com/IrF.gif');
background-color: black;
border-radius: 10px;
border: 5px solid #710505;
}
.tela {
width: 279px;
border: 0;
font-family: Nosferatu;
border-radius: 10px;
height: 60px;
padding-right: 15px;
padding-top: 10px;
background-color: #484646;
text-align: right;
margin-right: 6px;
font-size: 2.5rem;
color: #6d66ec;
overflow-x: auto;
transition: all .2s ease-in-out;
}
.contas div {
color: #6d66ec;
display: inline-block;
border: 0;
border-radius: 15px;
width: 40px;
text-align: center;
padding: 10px;
margin: 20px 4px 10px 0;
cursor: pointer;
background-color: #484646;
transition: border-color .2s ease-in-out, background-color .2s, box-shadow .2s;
}
.painel-numeros {
font-family: Nosferatu;
background-color: black;
display: inline-block;
}
.numeros div {
color: #6d66ec;
display: inline-block;
border: 0;
font-family: Nosferatu;
border-radius: 10px;
width: 40px;
text-align: center;
padding: 10px;
margin: 10px 4px 10px 0;
cursor: pointer;
background-color: #484646;
transition: border-color .2s ease-in-out, background-color .2s, box-shadow .2s;
}
.igual {
display: inline-block;
border: 0;
border-radius: 15px;
width: 40px;
text-align: center;
padding: 102px 10px;
margin: 10px 6px 10px 0;
vertical-align: top;
cursor: pointer;
color: #6d66ec;
background-color: #484646;
transition: all .2s ease-in-out;
}
.socialIcon{
width: 32px;
height:32;
margin: 0 auto;
margin-top: 20px;
margin-bottom:10px;
margin-inline-end:10px;
background-color: #ffffff;
display:flexbox;
border-radius: 20px;
justify-content:in;
align-items:center;
transition: transform .3s ease-in-out;
}
.socialIcon:hover{
transform: scale(1.2);
}