-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.css
80 lines (80 loc) · 1.46 KB
/
sketch.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
background-color: #9a9cea;
}
.header{
width: 100%;
height: 150px;
display: flex;
justify-content: center;
align-items: center;
}
.titulo{
text-align: center;
font-size: 80px;
color: #022631;
font-family: "Times New Roman", Times, serif;
}
.containerzao{
width: 100%;
height: 600px;
display:flex;
justify-content: center;
align-items: center;
}
.footer{
width: 100%;
height: 120px;
display: flex;
justify-content: center;
align-items: flex-end;
}
#container{
width: 600px;
height: 600px;
background-color: white;
display: flex;
flex-direction: column;
border:2px solid #0b759d;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
margin-right: 270px;
}
.botoes{
margin-right: 20px;
width: 13%;
height: 600px;
display: flex;
flex-direction: column;
justify-content:space-around;
align-items: center;
}
.pintar{
height: 100%;
width:50px;
background-color: #e9eef4;
}
.active{
background-color: #adeee2;
}
.botao{
width: 60%;
height: 55px;
border: none;
background-color: #a2dcee;
border-radius: 10px;
transition: 0.2s;
box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 4px;
}
.botao:hover{
background-color: #7cb9cc;
width: 64%;
height: 60px;
}