-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathset_goal.css
More file actions
116 lines (97 loc) · 1.92 KB
/
Copy pathset_goal.css
File metadata and controls
116 lines (97 loc) · 1.92 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
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;
}
h1 {
text-align: center;
position: absolute;
top: 3%;
font-size: 180%;
}
.active {
font-weight: bold;
}
main {
padding: 20px;
}
form input {
margin-bottom: 10px;
width: 90%;
padding: 10px;
position: relative;
left: -102px;
}
form button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
position: relative;
left: 60%;
}
.back-button {
position: absolute;
top: 25px;
left: 1257px;
padding: 15px 30px;
background-color: #333;
color: #fff;
text-decoration: none;
border: none;
border-radius: 5px;
}
.menu {
position: absolute;
top: 30px;
right: 20px;
}
.hamburger-menu {
width: 50px;
height: 35px;
display: flex;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
}
.line {
width: 100%;
height: 3px;
background-color: #000;
}
@media (max-width: 600px) {
h1 {
font-size: 140%; /* Adjust font size for smaller screens */
top: 16%; /* Adjust top position */
}
form input {
left: 0; /* Reset left position */
width: 80%; /* Adjust input width */
margin: 0 auto; /* Center input */
}
form button {
left: 58%;/* Adjust left position */
}
.back-button {
left: 70%; /* Reset left position */
padding: 2% 4%;/* Adjust right position */
top: 17%;
}
.menu{
top: 17%; /* Adjust top position */
right: 0px;/* Adjust right position */
}
.line{
width: 10vmin;
}
.hamburger-menu{
height: 7vmin;
}
}