-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (82 loc) · 1.94 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
@import url('https://fonts.googleapis.com/css2?family=Kanit&family=Pixelify+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Kanit', sans-serif;
font-family: 'Pixelify Sans', 'cursive';
}
body{
background-image: url(https://img.elo7.com.br/product/original/3EC2AD6/papel-de-parede-fisica-calculo-escolar-conta-matematica-a722-adesivo-estudo.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
padding: 3em;
}
#calc{
width: 400px;
padding: .5em;
background-color: #000000;
color: rgb(255,255, 255);
display: flex;
flex-direction: column;
border-radius: 20px;
}
#calc h3{
font-size: .8em;
font-weight: 300;
color: rgb(255,255, 255);
font-family: 'Kanit', sans-serif;
}
#operacoes{
text-align: right;
overflow-wrap: break-word;
min-height:4.6em;
}
#atual-operacao{
min-height: 1.6em;
font-weight: 700;
padding: .2em;
}
#previous-operacao{
color: #b2b1b1;
padding: .2em;
}
#conteiner-botao{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 3px;
}
#conteiner-botao button{
border: 1px solid transparent;
border-radius: 0;
height: 4.5em;
width: 90px;
font-size: 1.1em;
font-family: 'Kanit', sans-serif;
background-color: rgb(255,255, 255);
cursor: pointer;
}
#conteiner-botao button:hover{
background-color: #bababa;
border-color: #7b7b7b;
color: rgb(73, 240, 1);
}
#conteiner-botao .funcoes_calc{
background-color: #4d4d4d;
color: rgb(255, 255,255);
}
#conteiner-botao .funcoes_calc:hover{
background-color: #7b7b7b;
color:rgb(73, 240, 1);
}
#conteiner-botao #igual-botao{
grid-column: span 2;
width:187px;
background-color:rgb(73, 240, 1);
}