-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilos.css
More file actions
76 lines (69 loc) · 1.65 KB
/
estilos.css
File metadata and controls
76 lines (69 loc) · 1.65 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
.iphone-shell {
background-color: rgb(0, 0, 0);
padding: 5px;
border-radius: 15px;
box-shadow: 0 10px 42px -12px rgba(0, 0, 0, 0.7);
}
.iphone {
padding-top: 30px;
width: 320px;
height: 580px;
border-radius: 15px;
background: url(https://i.pinimg.com/originals/15/78/d7/1578d7060ffc9c248978026067c2dd12.jpg)
no-repeat;
background-size: cover;
position: relative;
}
::after {
content: "";
background-color: rgb(0, 0, 0);
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 22px;
width: 160px;
border-radius: 0 0 10px 10px;
}
.apps {
padding: 24px 18px 20px;
height: 100%;
max-height: 100%;
overflow-y: auto;
display: grid;
column-gap: 20px;
row-gap: 40px;
grid-template-columns: repeat(4, 1fr);
}
.apps--main {
grid-template-rows: repeat(auto-fill, 56px);
}
.topbar {
display: flex;
position: absolute;
top: 0;
width: 100%;
color: #fff;
font-weight: 600;
justify-content: space-between;
padding: 5px 18px;
}
*::before,
*::after {
box-sizing: border-box;
}
[class*="fa-"] {
font-size: 18px;
}
body {
background-image: url("https://wallpaperset.com/w/full/b/7/4/462755.jpg");
display: grid;
place-items: center;
height: 100vh;
grid-template-rows: 100px auto;
}
body,
html {
font-family: "Helvetica";
font-size: 13px;
}