-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (71 loc) · 1.27 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
html {
height: 100%;
}
body {
height: 100%;
margin: 0px;
display: flex;
background-color: #000000;
/*background-image: url(Icons/background.jpg);*/
background-position: center;
}
#container {
margin: auto;
padding: 0px 20px;
}
/*Panels*/
.Panel {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 960px;
/* margin-top: -50px; */
}
#Icons {
flex-direction: row;
flex-wrap: wrap;
align-content: flex-start;
}
/*Tiles*/
.tile {
padding: 10px;
margin: 10px;
background-color: #e5e6e4;
box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.75);
transition: box-shadow 0.2s ease-in-out;
}
.tile:focus {
box-shadow: 0px 0px 10px 3px #00d2ff;
}
.searchBar {
display: flex;
margin: 15px 0px;
}
/*Images in Icon Tiles*/
.icon img {
width: 128px;
height: 128px;
}
/*Images in Search Tiles*/
.searchBar a img {
width: 64px;
height: 64px;
}
/*Search Bars*/
input {
flex-grow: 1;
padding: 10px;
border: 1px solid #00d2ff;
margin: auto 10px;
background-color: #fafafa;
color: #231f20;
width: 40px;
}
.wrapper-promo {
display: block;
border: 0px;
text-decoration: none;
}
.wrapper-promo:focus {
box-shadow: 0px 0px 10px 3px #00d2ff;
}