-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (103 loc) · 1.95 KB
/
style.css
File metadata and controls
104 lines (103 loc) · 1.95 KB
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
@font-face {
font-family: "Kraby Patty";
src: url(assets/Krabby\ Patty.ttf);
}
body {
display: flex;
font-family: "Kraby Patty";
width: 100vw;
height: 100vh;
margin: 0px;
background-image: url(./img/bluryBackground.png);
background-color: #69a34b;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
overflow-x: hidden;
}
#marge {
grid-area: marge;
width: 30px;
height: 100%;
background-image: url(img/lineMarge.png);
background-size: 100%; /*le meme que paper*/
}
.container {
display: flex;
margin-top: 30px;
align-items: center;
justify-content: center;
width: 100%;
}
.paper {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
display: grid;
word-wrap: break-word;
grid-template-areas:
"marge titre"
"marge tasks"
"marge adding";
padding: 0px 10px 0px 15px;
max-width: 600px;
flex-direction: column;
background-color: aliceblue;
background-image: url(img/line.png);
background-size: 10%;
}
.titre {
grid-area: titre;
text-align: center;
text-decoration: underline;
}
.tasks {
grid-area: tasks;
}
.task {
display: grid;
word-wrap: break-word;
grid-template-areas: "text delete edit";
grid-template-columns: 4fr 1fr 1fr;
align-items: center;
}
.text {
max-width: 300px;
}
.adding {
grid-area: adding;
display: grid;
grid-template-areas: "text add";
grid-template-columns: 6fr 1fr;
align-items: center;
margin: 10px 0px 10px 0px;
}
input {
font-family: "Kraby patty";
border: solid gray 1.5px;
border-radius: 5px;
margin-right: 30px;
}
button {
font-family: "Kraby patty";
border-radius: 5px;
border-color: unset;
width: 50px;
height: 20px;
}
button.delete {
margin-left: 20px;
background-color: rgb(220, 51, 51);
color: white;
}
button.edit {
background-color: rgb(0, 174, 255);
color: white;
}
button#add {
background-color: rgb(5, 182, 5);
color: white;
height: 30px;
}
button:hover {
cursor: pointer;
}