-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (78 loc) · 1.61 KB
/
style.css
File metadata and controls
79 lines (78 loc) · 1.61 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
}
body {
display: flex;
align-items: center;
height: 100vh;
flex-direction: column;
background-color:#99cfff;
background-image:
radial-gradient(at 62% 65%, hsla(261,67%,79%,1) 0px, transparent 50%),
radial-gradient(at 48% 49%, hsla(240,80%,69%,1) 0px, transparent 50%);
background-repeat: no-repeat;
}
.div{
max-width: 100%;
margin-top: 5%;
display: flex;
align-items: center;
min-width: 50%;
height: auto;
flex-direction: column;
background-color: rgb(255, 255, 255);
border-radius: 10px;
}
.head{
width: 100%;
display: inline-block;
padding: 3px;
background-color: blue;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.head h1{
text-align: center;
color: white;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.head i{
float: right;
cursor: pointer;
font-size: 40px;
}
.tasks{
width: 100%;
min-height: 25px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
background-color: white;
}
#task{
width: 93%;
display: inline-block;
padding: 20px;
margin: 10px;
box-shadow: 2px 1px 2px rgb(128, 122, 122);
margin-left: 4%;
}
#task:hover{
box-shadow: 2px 5px 3px rgb(128, 122, 122);
}
#task i{
margin-right: 6%;
font-size: 20px;
cursor: pointer;
float: left;
}
#task h2{
font-size: 25px;
cursor: pointer;
float: right;
max-width: 80%;
white-space: pre-line;
overflow-wrap: break-word;
}