-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle-2010.css
More file actions
110 lines (95 loc) · 1.71 KB
/
google-2010.css
File metadata and controls
110 lines (95 loc) · 1.71 KB
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
/* ===== Base ===== */
body {
margin: 0;
height: 100vh;
background: #ffffff;
font-family: Arial, Helvetica, sans-serif;
color: #222;
}
/* ===== Center Layout ===== */
.container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 165px;
}
/* ===== Google Logo (2010) ===== */
.logo {
font-family: "Times New Roman", Georgia, serif;
font-size: 94px;
font-weight: bold;
letter-spacing: -1.5px;
margin-bottom: 24px;
text-shadow: 1px 1px 0 #d5d5d5;
}
/* Logo Colors */
.blue { color: #3366cc; }
.red { color: #dc3912; }
.yellow { color: #ff9900; }
.green { color: #109618; }
/* ===== Search Box ===== */
.search-box {
width: 480px;
height: 34px;
font-size: 16px;
padding: 0 10px;
border: 1px solid #d9d9d9;
border-radius: 1px;
background: #ffffff;
}
.search-box:hover {
border-color: #bfbfbf;
}
.search-box:focus {
outline: none;
border-color: #4d90fe;
}
/* ===== Buttons (2010 Flat Style) ===== */
.buttons {
margin-top: 22px;
}
button {
background: #f5f5f5;
border: 1px solid #dcdcdc;
border-radius: 2px;
color: #444;
font-size: 13px;
padding: 7px 14px;
margin: 0 5px;
cursor: pointer;
}
button:hover {
border-color: #c6c6c6;
background: #f8f8f8;
}
button:active {
background: #eeeeee;
}
/* ===== Footer ===== */
footer {
position: fixed;
bottom: 0;
width: 100%;
background: #f2f2f2;
border-top: 1px solid #e4e4e4;
font-size: 13px;
color: #666;
padding: 10px 20px;
display: flex;
gap: 22px;
}
footer span {
cursor: pointer;
}
footer span:hover {
text-decoration: underline;
}
/* ===== Responsive ===== */
@media (max-width: 600.5px) {
.search-box {
width: 90%;
}
.logo {
font-size: 70px;
}
}