-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
128 lines (118 loc) · 2.59 KB
/
estilo.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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
margin: 0;
padding: 0;
}
body{
background-color: rgba(0, 0, 0, 0.116);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
header{
display: flex;
}
h1{
background-color: rgba(255, 255, 255, 0.541);
text-align: center;
width: 600px;
margin: 50px;
font-family: 'Roboto', sans-serif;
color: rgba(0, 0, 0, 0.753);
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.25), -1px -1px 1px 2px rgba(255, 255, 255, 0.72);
}
.container{
display: flex;
flex-direction: column;
background-color: #E0E0E0;
align-items: center;
height: 604px;
width: 442px;
box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.226), -4px -5px 0px 2px rgba(255, 255, 255, 0.431);
padding-top: 24px;
}
.tela{
display: flex;
justify-content: center;
background-color: #ffff;
height: 114px;
width: 412px;
background: #FFFFFF;
border: 1px solid rgba(0, 0, 0, 0.22);
border-radius: 11px;
}
#resultado{
display: flex;
flex-wrap: wrap;
justify-content: center;
word-break: break-all;
padding: 15px;
font-family: 'Roboto', sans-serif;
font-size: 40px;
color: rgba(0, 0, 0, 0.651);
}
.entDados {
background-color: #C4C4C4;
display: flex;
flex-wrap: wrap;
height: 418px;
width: 412px;
border-radius: 0px;
justify-content: center;
margin: 20px 15px 28px 15px;
padding-top: 5px;
padding-bottom: 15px;
}
button{
background-color: #ffff;
height: 66px;
width: 80px;
margin: 10px ;
border-style:none;
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.25), -1px -1px 1px 2px rgba(255, 255, 255, 0.72);
}
p{
font-family: 'Roboto', sans-serif;
font-size: 30px;
color: rgba(0, 0, 0, 0.68);
}
button:active{
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.25);
transition: 0.2s;
}
@media screen and (max-width: 550px) {
body{
height: 100vh;
width: 100vw;
}
header {
display: none;
}
.container{
height: 500px;
width: 320px;
}
.tela{
display: flex;
justify-content: center;
height: 90px;
width: 300px;
}
.entDados {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
align-items: center;
justify-items: center;
height: 370px;
width: 300px;
padding: 0px;
}
button{
background-color: #ffff;
height: 50px;
width: 60px;
margin: 10px 5px 10px 5px;
padding: 0px;
}
}