-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
92 lines (78 loc) ยท 1.51 KB
/
styles.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--grey:#f6f2f2;
--Electric-Blue:#59CBE8;
--blue:#517EF5;
--black:#080808;
--gold:#E8BC4D;
}
body {
background-color: var(--Electric-Blue);
font-family: "Roboto", sans-serif;
font-size: 18px;
padding: 0 15px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
h1 {
font-size: 1.4rem;
margin: 20px 0;
}
.phone-background,.phone-footer {
background-color: var(--black);
height: 50px;
width: 100%;
}
.phone-camera {
background-color:var(--gold);
width: 15px;
height: 15px;
border-radius: 50%;
margin: 5px auto;
border: 2px solid var(--grey);
}
#user-input{
width: 90%;
display: block;
height: 50px;
margin: 10px auto;
padding: 5px;
font-size: 17px;
font-weight: bold;
border: 2px solid var(--blue);
border-radius: 8px;
}
#results-div {
overflow-y: auto;
height: 450px;
width: 100%;
}
.phone-container {
display: flex;
flex-direction : column;
border: 15px solid var(--black);
border-radius: 15px;
width: 300px;
height: 550px;
font-size: 17px;
font-weight: bold;
box-shadow: 5px 5px 5px #517EF5;
}
.btn {
background-color: var(--gold);
padding: 5px;
margin-top: 15px;
border: 2px solid var(--grey);
border-radius : 8px;
width: 125px;
font-weight: bold;
font-size: medium;
}