-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
91 lines (79 loc) · 1.64 KB
/
style.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
88
89
90
.completed {
text-decoration: line-through;
}
body {
background: url(https://images.pexels.com/photos/257092/pexels-photo-257092.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500);
background-size: 100vw 100vh;
display: flex;
flex-direction: column;
font-size: 1.5rem;
}
.app {
background-color: rgba(255, 255, 255, 0.3);
border: whitesmoke solid 0.1rem;
position: relative;
top: 20vh;
margin: auto;
padding: 0 5rem 2rem 5rem;
border-radius: 0.5rem;
width: 50vw;
}
h1 {
text-align: center;
font-weight: bolder;
font-family: 'Abril Fatface', cursive;
text-decoration: underline;
color:rgba(128, 0, 0, 0.7);
}
<<<<<<< HEAD
=======
#todo-container, input {
font-family: 'Satisfy', cursive;
}
>>>>>>> master
#add-todo {
display: flex;
flex-direction: row;
}
@media (min-width: 768px) {
#add-todo {
display: flex;
flex-direction: row;
justify-content: center;
}
}
#itemToAdd {
width: 15rem;
margin-right: 1rem;
border-radius: 0.5rem;
border: rgba(0, 0, 0, 0.7) solid 0.1rem;
}
#addButton {
text-transform: lowercase;
font-family: 'Satisfy', cursive;
border-radius: 5rem;
border-style: none;
background-color: rgba(128, 0, 0, 0.3);
}
#todo-container {
font-family: 'Satisfy', cursive;
display: flex;
flex-direction: row;
justify-content: center;
}
li {
display: flex;
flex-direction: row;
margin-left: -2rem;
}
button {
height: 1.4rem;
width: 1.4rem;
margin: 0.5em;
<<<<<<< HEAD
background-color: red;
=======
float: right;
background-color: #CD5C5C;
>>>>>>> master
}