-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
70 lines (53 loc) · 1010 Bytes
/
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
header{
text-align: center;
padding-top: 1.35vh;
padding-bottom: 1.35vh;
border-bottom: solid black 1px;
background-color: rgba(0, 0, 0, 0.466);
}
button{
height: 5.5vh;
width: 18vh;
border-radius: 10px;
border: none;
font-size: 16px;
color: white;
background-color: rgba(0, 0, 0, 0.397);
border: solid black 1px;
}
input{
height: 5.5vh;
width: 50vh;
border-radius: 10px;
font-size: 16px;
border: solid whitesmoke 1px;
margin-right: 1vh;
padding-left: 2.5vh;
}
.results{
width: 100%;
align-content: center;
align-items: center;
text-align: center;
padding-top: .5vh;
background-color: rgba(0, 0, 0, 0.452);
}
img{
min-height: 27vh;
max-height: 27vh;
width: 24%;
margin: .5vh;
}
.title{
text-align: center;
padding: 10px;
}
h1{
font-size: 10vh;
}