-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (56 loc) · 963 Bytes
/
Copy pathstyle.css
File metadata and controls
65 lines (56 loc) · 963 Bytes
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
* {
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
display: flex;
background-color: rgb(15, 15, 15);
text-decoration: none;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin: auto;
gap: 1rem;
background-color: white;
padding: 2rem;
border-radius: 3rem;
color: rgb(15, 15, 15);
transition: transform 0.4s ease;
}
h1 {
margin-bottom: 1rem;
}
a {
text-decoration: none;
color: inherit;
width: 100%;
}
button {
font-size: 0.9rem;
font-weight: semibold;
padding: 1rem;
border-radius: 2rem;
border: 0;
background-color: rgb(15, 15, 15);
color: white;
transition: 0.4s ease;
width: 100%;
}
button:hover {
cursor: pointer;
scale: 1.05;
}
@media (max-height: 700px) {
body {
padding: 2rem;
}
}
@media (max-width: 520px) {
body {
padding: 2rem;
}
}