-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathusers.css
More file actions
60 lines (53 loc) · 1.17 KB
/
Copy pathusers.css
File metadata and controls
60 lines (53 loc) · 1.17 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body {
main {
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
height: 100vh;
display: flex;
justify-content: space-around;
align-items: center;
#card {
background: rgb(146, 134, 255);
display: flex;
flex-direction: column;
justify-content: center;
width: 30%;
height: 250px;
line-height: 40px;
padding: 10px;
border: none;
border-radius: 15px;
&:first-child {
background: rgb(255, 134, 146);
}
&:last-child {
background: rgb(134, 255, 146);
}
span {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
}
}
}
}
@media screen and (max-width: 425px) {
body {
main {
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px 0;
gap: 20px;
#card {
width: 80%;
text-wrap: wrap;
}
}
}
}