-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.css
137 lines (119 loc) · 1.96 KB
/
app.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
body {
color: #515151;
font-family: "Open Sans", Arial, sans serif;
font-size: 14px;
height: 100%;
width: 380px;
margin: auto;
}
.header {
text-align: center;
background-color: #0096d9;
padding: 10px 0;
}
.main {
text-align: center;
}
h2 {
font-size: 16px;
font-weight: 400;
color: #666;
}
.search {
display: flex;
justify-content: space-between;
align-items: center;
margin: 5px;
}
.search__text {
width: 100%;
height: 36px;
outline: 0;
padding-left: 20px;
border: 1px solid #ccc;
}
.search__text:focus {
border: 1px solid #f7931e;
}
.search__btn {
height: 40px;
width: 70px;
padding-top: 7px;
outline: 0;
border: 0;
background-color: #f7931e;
}
.search__btn path {
fill: #fff;
}
.promo {
background-color: #0096d9;
padding: 10px 0;
text-decoration: none;
display: block;
color: #fff;
margin: 20px 20px 0 20px;
border-radius: 25px;
}
.travel,
.digital,
.kategori {
list-style: none;
margin: 0;
padding: 0;
}
.travel li,
.digital li,
.kategori li {
display: inline-block;
}
.travel .title,
.digital .title,
.kategori .title {
margin-top: 5px;
}
.travel li a,
.digital li a,
.kategori li a {
position: relative;
display: block;
text-decoration: none;
font-size: 14px;
font-weight: bold;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
width: 100px;
color: #0096d9;
}
.travel li a:hover,
.digital li a:hover,
.kategori li a:hover {
border: 1px solid #0096d9;
background-color: #0096d9;
color: #fff;
}
.travel li a:hover path,
.digital li a:hover path,
.kategori li a:hover path {
fill: #fff;
}
.footer {
line-height: 1.5;
font-size: 12px;
padding: 10px 0;
text-align: center;
background-color: #0096d9;
color: #fff;
background-image: url(images/foot_pattern.png);
background-repeat: repeat-x;
background-position: bottom;
background-size: 500px;
}
.footer a {
color: #fff;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}