-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (60 loc) · 1.09 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
*{
box-sizing: border-box;
padding: 0px;
margin: 0px;
}
body{
background: rgb(59, 148, 189);
}
div.personal-banner{
border-radius: 6px;
max-width: 210px;
background-color: rgb(255, 184, 52);
padding: 15px;
}
.personal-banner h4{
padding: 10px 0px;
font: 14pt 600 black;
}
div.personal-banner ul{
list-style-type: none;
text-decoration: none;
text-align: center;
}
.tela-principal{
display: flex;
max-width: 1000px;
margin: auto;
margin-top: 50px;
justify-content: space-evenly;
}
div.task-container{
position: relative;
background-color: rgb(255, 184, 52);
width: 500px;
height: 500px;
padding: 20px;
border-radius: 6px;
}
div.task-tittle{
display: flex;
max-width: fit-content;
margin: auto;
gap: 180px;
margin-bottom: 10px;
}
div.task-content{
display: flex;
max-width: fit-content;
margin: auto;
gap: 100px;
}
.input-task{
position: absolute;
bottom: 0;
left: 0;
width: 100%;
text-align: center;
margin: auto;
padding: 10px;
}