-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.css
64 lines (57 loc) · 911 Bytes
/
setup.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
body {
padding: 0;
margin: 0;
display: flex;
height: 100vh;
width: 100vw;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 16px;
font-family: sans-serif;
}
button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
border: none;
}
*,
*::after,
*::before {
box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
span {
display: inline-block;
}
.phone-frame {
width: 345px;
height: 680px;
border: 5px solid #222;
border-radius: 25px;
background-color: #fafafa;
position: relative;
overflow: auto;
padding: 0 25px;
}
.phone-frame::before {
content: "";
height: 10px;
width: 100px;
position: absolute;
left: calc(50% - 50px);
top: 0;
background-color: #222;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
z-index: 10000;
}