-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (112 loc) · 1.89 KB
/
style.css
File metadata and controls
117 lines (112 loc) · 1.89 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
111
112
113
114
115
116
body{
margin:0px;
}
.headbar{
display:flex;
flex-direction: row;
justify-content:flex-end;
padding-top:10px;
padding-right: 10px;
}
a{
padding: 0px 10px 0px 10px;
color:rgba(0, 0, 0, 0.651);
text-decoration:none;
}
a:hover{
text-decoration: underline;
}
#google-account{
height:23px;
width:23px;
background-color: black;
border-radius: 15px;
}
#hover-box:hover{
opacity:1;
}
.outer{
display: flex;
justify-content: flex-end;
}
#hover-box{
background-color: rgba(0, 0, 0, 0.815);
color: rgb(245, 233, 215);
border-radius: 5px;
padding:3px 3px 3px 3px;
margin-right: 10px;
margin-top:5px;
min-width: 100px;
opacity:0;
}
.center-elements{
/*position:fixed;
bottom:40%;*/
margin-top:50px;
height:300px;
}
.image{
display:grid;
grid-template:1fr/ 5fr 2fr 5fr;
}
.abc{
height:100%;
}
.search-bar{
width:70%;
margin:0px 15% 0px 15%;
height:30%;
display:grid;
grid-template: 1fr 1fr/ 0.5fr 0.5fr 1fr 1fr 0.5fr 0.5fr;
grid-gap:5px;
padding:10px;
}
button{
color:rgba(0, 0, 0, 0.767);
opacity:0.7;
border-style: none;
border-radius: 5px;
}
button:hover{
opacity:1;
transform:scale(1.03,1.03);
}
#bar{
grid-column:2/6;
grid-row:1/2;
border-style: none;
border-width: 0px;
display:flex;
justify-content: center;
padding-bottom: 5px;
}
#bar:hover{
transform:scale(1.1, 1.1);
}
#area1{
height:100%;
width:80%;
padding:0px;
margin:0px;
border-style: solid;
border-width:1px;
border-radius: 20px;
border-color: silver;
min-width:200px;
max-width:400px ;
outline: none;
}
#area2{
grid-column:3/4;
grid-row:2/3;
justify-items: end;
}
#area3{
grid-column:4/5;
grid-row:2/3;
justify-items:start;
}
img{
grid-column:2/3;
margin:1fr 0px 1fr 0px;
}