-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
52 lines (44 loc) · 900 Bytes
/
style2.css
File metadata and controls
52 lines (44 loc) · 900 Bytes
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
.container {
height: 100vh;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
.calculator{
background-image: linear-gradient(to left, #314ecf, #4bc9a9, #8d267f);
padding: 60vh 10vh 10vh 10vh;
border-radius: 1rem;
}
#display {
background-color: #fdf8fd;
padding: 15px;
border-radius: 0.5rem;
text-align: right;
height: 5vh;
margin: 0.5rem;
}
.tabela {
display: block;
align-items: center;
}
.calculatorButtons{
width: 4rem;
height: 3rem;
border: none;
margin: 0.3rem;
border-radius: 0.5rem;
background-color: #fef9ff;
box-shadow: 0 4px #cac5b6;
text-align: center;
}
.calculatorButtons:active {
transform: translateY(0.1vh);
box-shadow: 0 2px #cac5b6;
}
#result{
height: 6.8rem;
}
#num0{
width: 8.7rem;
}