-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmartphone_layout.css
More file actions
74 lines (65 loc) · 1.23 KB
/
smartphone_layout.css
File metadata and controls
74 lines (65 loc) · 1.23 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
*{
margin: 0;
padding: 0;
/* background-color: aqua; */
}
body{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.body{
border: 6px solid rgb(53, 53, 53);
height: 15cm;
width: 7cm;
/* margin: auto; */
margin-top: 32px;
border-radius: 16px;
background-color: white;
box-shadow: inset 0 0 12px;
box-shadow: 0 0 8px;
z-index: 1;
/* display: flex; */
/* flex-direction: column; */
/* background-color: black; */
overflow: hidden;
box-sizing: border-box;
}
.body iframe{
border-radius: 11px;
}
::-webkit-scrollbar{
width: 10px;
}
::-webkit-scrollbar-track{
background: transparent;
border-radius: 50px;
}
::-webkit-scrollbar-thumb{
background: transparent;
}
.notch{
position: relative;
top: -15.24cm;
background-color: rgb(53, 53, 53);
border-radius: 0 0 15px 15px;
height: 0.6cm;
width: 55%;
margin:auto;
display: flex;
justify-content: center;
}
.speaker{
margin: auto 15px;
width: 1cm;
height: 5px;
border-radius: 3px;
background-color: silver;
}
.camera{
margin: auto 0px;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: silver;
}