-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (110 loc) · 2.37 KB
/
Copy pathstyle.css
File metadata and controls
116 lines (110 loc) · 2.37 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
*{
margin: 0;
padding: 0;
}
@font-face{
font-family: fonte digital;
src: url('technology.regular.ttf') format('truetype');
}
.fundo{
background-color: black;
height: 100vh;
color: white;
}
.calculadora{
position:absolute;
background-color: rgb(86, 137, 179);
border-radius: 5%;
padding: 10px;
}
.botao{
width: 50px;
height: 50px;
font-size: 25px;
cursor: pointer;
/*background-image: linear-gradient(30deg, gray, white);*/
color: rgb(255, 255, 255);
background-color: black;
border: none;
margin: 1%;
font-weight: bolder;
border-radius: 15%;
}
.botao:hover{/* quando passa o mouse emcima */
background-color: lime;
color: black;
}
.botaoOperador, .abrirParentesis, .fecharParentesis{
width: 50px;
height: 50px;
font-size: 25px;
cursor: pointer;
/*background-image: linear-gradient(30deg, gray, white);*/
color: rgb(0, 0, 0);
background-color: black;
border: none;
margin: 1%;
font-weight: bolder;
border-radius: 15%;
background-color: orange;
}
.botaoOperador:hover{/* quando passa o mouse emcima */
background-color: lime;
color: black;
}
.botaoIgual{
width: 50px;
height: 50px;
font-size: 25px;
cursor: pointer;
/*background-image: linear-gradient(30deg, gray, white);*/
color: rgb(0, 0, 0);
background-color: black;
border: none;
margin: 1%;
font-weight: bolder;
border-radius: 15%;
background-color: rgb(255, 0, 0);
}
.botaoIgual:hover{
background-color: lime;
color: black;
}
/*
.linha{
display: flex;
justify-content: flex-end;
}
.raizBotao{
width: 50px;
height: 50px;
font-size: 25px;
cursor: pointer;
//background-image: linear-gradient(30deg, gray, white);
color: rgb(0, 0, 0);
background-color: black;
border: none;
margin: 1%;
font-weight: bolder;
border-radius: 15%;
background-color: orange;
}
.raizBotao:hover{
background-color: lime;
color: black;
}*/
#resultado{
width: 100%;
height: 50px;
background-color: rgb(146, 161, 147);
color: black;
text-align:right;
font-family: fonte digital;
font-weight:900px;
font-size:330%;
transform: translate(-3px);
border-radius: 5%;
border-style: solid;
border-color: rgb(102, 102, 102);
padding-bottom: 10px;
}