-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (46 loc) · 726 Bytes
/
style.css
File metadata and controls
47 lines (46 loc) · 726 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html{
/* height: 100%; */
width: 100%;
font-family: Arial, Helvetica, sans-serif;
}
body{
background-color: #212121;
}
#inner{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.singleTask{
margin: 1rem;
}
.task{
overflow: hidden;
}
a{
text-decoration: none;
}
a:hover{
text-decoration: white 2px underline;
}
a:hover img{
transform: scale(1.05);
filter: brightness(0.7);
}
a img{
transition: all 0.5s;
}
h1{
text-align: center;
color: whitesmoke;
margin: 20px 0px;
}
h3{
text-align: center;
color: #616060;
color: whitesmoke;
}