-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (81 loc) · 1.4 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (81 loc) · 1.4 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
body
{
background: rgb(0,255,250);
background: linear-gradient(105deg, rgba(0,255,250,1) 0%, rgba(0,140,255,1) 100%);
}
#header p
{
font-family: 'Roboto', sans-serif;
padding-left: 50px;
padding-top: 50px;
font-size: 50px;
font-weight: 700;
color: black;
}
#card_container
{
display: flex;
justify-content: center;
align-items: center;
}
.card
{
border-radius: 30px;
background-color: white;
height: 70vh;
width: 380px;
margin: 50px;
margin-top: 0px;
padding-left: 35px;
box-shadow: 0px 0px 52px -11px rgba(0,0,0,0.75);
position: relative;
}
.card .card_title
{
width: 345px;
font-family: 'Roboto', sans-serif;
font-size: 30px;
border-bottom: 1px solid black;
padding-bottom: 5px;
}
#items
{
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 20px;
}
.checkmark
{
width: 12%;
vertical-align: -27px;
height: 10%;
margin-right: 10px;
}
.done
{
text-decoration: line-through;
}
#new img
{
position: absolute;
bottom: 25;
width: 10%;
right: 35;
}
#new input[type=text]
{
position: absolute;
bottom: 30;
width: 290px;
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 20px;
border: 1px solid rgb(194, 194, 194);
border-radius: 5px;
padding-left: 10px;
}
.tasksButton{
position: absolute;
top:50px;
left:200px;
}