-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (60 loc) · 1.28 KB
/
style.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
.resultnext{
height: 90px;
width: 300px;
background: rgb(101, 161, 123);
color: aliceblue;
font-size: 50px;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: end;
}
*{
margin: 0%;
padding: 0%;
}
body{
background: linear-gradient(to right, rgb(149, 0, 255),rgb(255, 125, 225));
display: flex;
justify-content: center;
align-items: center;
padding: 90px;
}
#main-section{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: linear-gradient(to right, rgb(33, 33, 34),rgb(50, 50, 50));
width: 350px;
height: 550px;
border-radius: 5%;
}
#brand-name{
font-size: 25px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color: aliceblue;
padding-left: 1rem;
}
.result-box input{
height: 80px;
width: 310px;
margin: 10px;
background: rgb(111, 139, 120);
text-align: right;
font-size: 30px;
}
.buttons-directions{
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: center;
margin: 10px;
}
.row-directions button{
width: 70px;
height: 70px;
margin: 3px;
border-radius: 50%;
background-color: rgb(169, 166, 166);
}