-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.css
77 lines (66 loc) · 1.04 KB
/
dashboard.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Open Sans', serif;
font-weight: 300;
}
body {
background-color: var(background-color);
color: var(text-color);
}
img {
margin: 0 auto;
width: 100%;
}
h1 {
font-size: 1rem;
text-align: center;
font-weight: 400;
}
.container {
display: flex;
flex-direction: column;
max-width: 30rem;
margin: 0 auto;
gap: 2rem;
min-height: 100dvh;
padding: 2rem;
justify-content: center;
}
.link-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
a {
display: block;
text-transform: lowercase;
background: #00000010;
padding: 1rem;
color: var(text-color);
text-decoration: none;
transition: transform 200ms, background-color 200ms;
border-radius: 0.5rem;
&:hover {
text-decoration: none;
transform: scale(1.05) rotate(-1deg);
background: #00000030;
}
}
a:first-letter {
text-transform: uppercase !important;
}
@media (min-width: 500px) {
h1 {
font-size: 1.8rem;
}
body {
font-size: 1.5rem;
}
}
@media (min-width: 400px) {
img {
width: 70%;
}
}