-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (72 loc) · 1.23 KB
/
styles.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
*{
margin:0;
padding: 0;
font-family: sans-serif;
}
.container1{
display: flex;
flex-direction: row;
justify-content: center;
font-size: 30px;
color:grey;
align-items: center;
padding:5%;
margin: 5% 30px 0 30px;
gap:0px 215px;
}
.right a{
text-decoration:none;
color:grey;
font-size:25px;
}
.nav-brand{
color: black;
font-weight: 600;
}
.fa-plus-circle{
color:crimson;
}
.container2{
display: flex;
justify-content: center;
align-items: center;
}
.item{
border:1px solid crimson;
border-radius:10px;
height:200px;
width:165px;
box-shadow: 3px 3px 4px grey;
margin: 0 15px 0 15px;
text-align: center;
box-sizing: border-box;
padding-top: 15px;
padding-bottom: 5px;
}
.item-head{
color: crimson;
}
.item:hover{
color:black;
}
.item hr{
width:80%;
position:relative;
left:20%;
border: none;
border-top: 1px solid black;
}
.task1{
color:red;
text-decoration: line-through;
}
.item ul{
list-style: none;
}
.item li{
padding:10px;
}
.item-link{
text-decoration: none;
color: crimson;
}