-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (59 loc) · 1.4 KB
/
Copy pathstyles.css
File metadata and controls
63 lines (59 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
body {
font-size: 20px;
background-image: url(nicola-styles-qWFMm1iRJkM-unsplash.jpg);
font-family: 'Arial', sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
#app {
background-color: rgb(231, 227, 227, 0.5);
padding: 2rem;
border-radius: 5%;
display: flex;
flex-direction: column;
justify-content: center;
}
.container {
margin: 0.3rem;
}
h1{
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-shadow: 1.5rem, 1.5rem,grey;
}
#input_box {
border-radius: 10%;
color: rgb(41, 41, 41);
width: 80%;
}
#addButton {
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(196, 27, 27);
border: none;
border-radius: 8%;
font-size: 1.2rem;
text-shadow: 0.1rem, 0.1rem, grey;
box-shadow: grey;
width: max-content;
padding: 0.2rem;
align-self: center;
}
#delete_button{
background-color: rgb(215, 23, 23,0.7);
border-radius: 8%;
padding: 0.15rem;
border: none;
width: max-content;
align-self: center;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 0.9rem;
}