-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (95 loc) · 1.93 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-color: #292640;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size:medium;
}
header{
color: white;
padding: 20px;
}
/* #display{
text-align: right;
width: 300px;
height: 50px;
background-color: rgba(0, 0, 0, 0.411);
color: white;
margin-bottom: 10px;
border-radius: 5px;
font-weight: bold;
font-size:medium;
} */
#tela{
text-align: right;
width: 300px;
height: 50px;
background-color: rgba(0, 0, 0, 0.411);
color: white;
margin-bottom: 10px;
border-radius: 5px;
font-weight: bold;
font-size:medium;
padding-right: 15px;
}
#keyboard{
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: rgba(0, 0, 0, 0.288);
width: 300px;
padding: 10px 0px;
border-radius: 5px;
}
input{
width: 60px;
height: 35px;
border-radius: 5px;
justify-content: space-around;
cursor: pointer;
outline: none;
border: none;
border-bottom: 2px solid #292640;
color: #292640;
font-weight: bold;
font-size:medium;
}
#first-line, #second-line, #third-line, #fourth-line{
padding: 8px;
width: 100%;
display: flex;
flex-direction: row-reverse;
align-items: center;
justify-content: space-around;
align-content: space-between;
}
#del{
background-color: rgb(13, 44, 19);
color: white;
}
#reset{
background-color: rgb(13, 44, 19);
color: white;
width: 120px;
}
#igual{
width: 150px;
background-color: rgba(255, 0, 0, 0.716);
color: white;
}
footer{
padding-top: 10px;
color: white;
font-weight: 100;
font-size: 8pt;
}