-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
54 lines (48 loc) · 859 Bytes
/
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
body{
background-color: rgb(186, 241, 255);
}
.header{
color: azure;
text-align: center;
}
.header h1{
font-size: 30px;
color: azure;
text-align: center;
padding-top: 20px;
}
.container{
padding: 0px 10px;
border-radius: 10px;
margin: 0 auto;
max-width: 580px;
background-color: rgb(128, 147, 255);
text-align: center;
}
.grid{
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
padding-bottom: 20px;
}
.celula{
width: 170px;
height: 160px;
margin: 4px 2px;
font-size: 100pt;
padding-top: 10px;
border-radius: 7px;
text-align: center;
background-color: rgb(193, 225, 255);
}
#reset{
background-color: rgb(0, 20, 199);
color: azure;
font-size: 150%;
border-style: none;
border-radius: 10px;
text-align: center;
padding: 15px 50px;
margin-bottom: 20px;
cursor: pointer;
}