-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyle.css
114 lines (97 loc) · 1.88 KB
/
mystyle.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
body {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: 1fr 7fr 2fr 10fr 1fr;
grid-template-areas:
"upper-left . upper-right"
". google-logo ."
". search ."
". more-search ."
"bottom-left bottom-left bottom-right";
height: 100%;
font-size: 12px;
background-color: #222222;
}
.upper-left {
grid-area: upper-left;
display: grid;
grid-template-columns: 1fr 2fr;
}
.upper-right {
grid-area: upper-right;
display: flex;
justify-content: space-evenly;
align-self: flex-start;
}
.google-logo {
grid-area: google-logo;
display: flex;
justify-content: center;
align-items: flex-end;
}
.search-bar {
grid-area: search;
display: flex;
justify-content: center;
align-self: flex-start;
}
.search {
height: 30px;
}
.more-search {
grid-area: more-search;
display: flex;
justify-content: space-evenly;
}
.bottom-left {
grid-area: bottom-left;
display: grid;
grid-template-columns: 1fr 1fr 5fr;
background-color: #222222;
align-content: center;
border-top: solid 2px #e4e4e4;
}
.bottom-right {
grid-area: bottom-right;
display: flex;
justify-content: space-evenly;
background-color: #222222;
align-items: center;
border-top: solid 2px #e4e4e4;
}
.left-box {
background-color: #f2f2f2;
height: 20px;
padding: 10px;
border-radius: 10%;
}
.right-box {
background-color: #f2f2f2;
height: 20px;
padding: 10px;
border-radius: 10%;
}
.left-box:hover {
border: solid 1px #e4e4e4;
}
.right-box:hover {
border: solid 1px #e4e4e4;
}
input {
width: 500px;
}
#profile {
border-radius: 50%;
}
a {
text-decoration: none;
font-size: 20px;
padding: 20px;
color: white;
}
#profile {
display: block;
width: 40px;
height: auto;
padding: 10px;
}