forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (68 loc) · 1.48 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
/* CSS styles */
html, body {
height: 160%; /* Ensure HTML and body fill the entire viewport */
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f1e9e9;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
margin-top: 60px;
font-family: "Arial", sans-serif; /* Change the font family */
font-size: 50px; /* Change the font size */
color:#6d36c0;
margin-bottom: 60px; /* Add some space below the title */
}
.container{
width: 80%; /* Make container width responsive */
max-width: 600px; /* Limit maximum width */
margin: 20px auto;
background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
height: 490;
}
.note-input {
width: calc(100% - 20px); /* Make input fields responsive */
padding: 8px;
margin-bottom: 10px;
}
button {
padding: 8px 20px;
margin-right: 10px;
cursor: pointer;
border: none;
border-radius: 4px;
}
.add-button {
background-color: #8b70d6;
color: white;
}
.remove-button {
background-color:#8b70d6;
color: white;
margin-left: 30px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 20px; /* Add space between each note */
}
li strong {
display: block; /* Ensure title appears on its own line */
}
/* Set background image */
body {
background-image: url('bg.webp');
background-size: cover;
background-position: center;
background-repeat: repeat;
}