-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
140 lines (129 loc) · 2.01 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
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
138
139
140
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
height: 100vh;
}
/*Header*/
header{
padding: 15px 20px;
height: 150px;
}
.head{
float: right;
display: flex;
justify-content:center;
align-items: center;
}
.head a{
padding-right: 10px;
text-decoration: none;
color: #333
}
.head a:hover{
text-decoration: underline;
}
header img{
border-radius: 50%;
height: 40px;
width: 40px;
}
/*Google*/
#google{
height:400px;
}
.img-google{
display: flex;
justify-content: center;
}
.img-google img{
height: 25%;
padding-right: 10px;
}
.search{
display: flex;
justify-content: center;
}
.container {
width: 100%;
margin: 0 auto;
}
.search input{
width:85%;
padding-left: 10px;
height: 100%;
border: transparent;
}
.search input:focus{
outline: none;
}
#search-block{
padding:15px;
border: solid 1px #ccc;
width:70%;
border-radius: 25px;
}
#search-block:hover{
box-shadow: 1px 0px 0px 3px #e3e3e3;
}
.button-search{
margin-top:20px;
display: flex;
justify-content: center;
}
.button{
padding:10px;
margin-right: 20px;
color: #444;
border:1px solid transparent;
cursor:pointer;
background-color: #f4f4f4;
width:180px;
}
.button:hover{
border: 1px solid #f5f5f5;
box-shadow: 1px 1px 2px 2px #bbb;
border-radius: 3px;
}
/*Footer*/
footer{
background-color: #F2F2F2;
color: #666;
}
#foot-one{
padding: 20px;
border-bottom: solid 1px #ccc;
}
#foot-two{
padding: 25px 15px;
display: block;
text-align: center;
font-size: 15px;
}
#foot-two ul{
list-style: none;
}
#foot-two li{
display: inline-block;
padding: 2px 16px;
margin-top: 5px;
}
a {
color: #666;
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
@media (max-width: 500px) {
.button{
width: 180px;
}
.img-google img{
height:50px;;
padding-right: 10px;
margin-bottom: 25px;
}
}