-
Notifications
You must be signed in to change notification settings - Fork 2
/
MAIN.css
75 lines (73 loc) · 1.38 KB
/
MAIN.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
* {
-webkit-transition: font-size 0.3s ease;
-moz-transition: font-size: 0.3s ease;
-o-transition: font-size: 0.3s ease;
-ms-transition: font-size: 0.3s ease;
}
html {
background: url('assets/dictionarysplash.jpg') no-repeat center center fixed;
-webkit-background-size: 100%;
-moz-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100vh;
}
body {
font-family: 'Courgette', Georgia, Times, Times New Roman, serif;
color: #ffede2;
}
h1 {
text-align: center;
}
p {
margin: 0;
}
.search-container {
margin: 2em;
}
.content-container {
margin: 2em;
}
li.suggestion.active {
font-size: 2em;
}
li.suggestion {
height: 2em;
}
ul {
list-style-type: none;
display: inline-block;
padding: 0;
width: 50%;
margin: 0;
text-align: center;
}
#search-box {
border: none;
font-size: 1.5em;
font-family: 'Courgette', Georgia, Times, Times New Roman, serif;
opacity: 0.7;
border-radius: 4px;
padding: 0.3em;
margin-left: 18%;
}
#search-box:focus {
outline: none;
padding: 0.3em;
}
#definition-container {
height: auto;
width: 50%;
float: right;
font-size: 2em;
text-align: center;
}
@media (max-width: 600px) {
#search-box {
margin: 0;
}
}