-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsaved_goals.css
More file actions
152 lines (129 loc) · 2.77 KB
/
Copy pathsaved_goals.css
File metadata and controls
152 lines (129 loc) · 2.77 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
body {
font-family: sans-serif;
display: flex;
align-items: center;
justify-content: space-around;
min-height: 100vh;
background-color: #f0f0f0;
background-image: url("background");
background-repeat: no-repeat;
background-size: cover;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header h1 {
color: black;
margin: 0;
font-size: 24px;
position: relative;
top: -15pc;
right: -565px;
}
/* Style for the heading */
h3 {
font-size: 24px;
color: #000000;
margin-bottom: 10px;
}
/* Style for the link */
a {
display: inline-block;
padding: 10px 20px;
background-color: #000000;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
position: relative;
top:13pc;
left:35pc;
}
/* Hover effect */
a:hover {
background-color: #4b4c4c;
}
.header img {
width: 50px;
height: auto;
}
.back-button {
position: relative;
top: -20pc;
left: 63pc;
padding: 15px 30px;
background-color: #333;
color: #fff;
text-decoration: none;
border: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.back-button:hover {
background-color: #555;
}
.goal {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
width: 700px;
position: relative;
left: -100px;
}
.goal h2 {
margin-bottom: 5px;
}
.goal p {
margin-bottom: 5px;
}
.hamburger-menu {
width: 50px;
height: 40px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
position: relative;
top: -23pc;
right: -80pc;
}
.line {
width: 100%;
height: 4px;
background-color: #000;
}
@media (max-width: 768px) {
.back-button {
top: -18.95pc; /* Adjust position for smaller screens */
left: 350%; /* Adjust position for smaller screens */
transform: translateX(-50%); /* Center button horizontally */
padding: 12px 10px;
}
.header h1 {
font-size: 21px;
top: -50vmin; /* Adjust position for smaller screens */
right: -55vmin; /* Adjust position for smaller screens */
}
a {
font-size: 10px;
padding: 8px 16px;
top: 170px; /* Adjust position for smaller screens */
left: 160%; /* Adjust position for smaller screens */
}
.goal {
font-size: 14px;
width: 70vmin; /* Adjust width for smaller screens */
}
.hamburger-menu {
top: -21.8pc; /* Adjust position for smaller screens */
right: -30pc; /* Adjust position for smaller screens */
height: 7vmin;
}
.line{
width: 10vmin;
}
}