-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (93 loc) · 1.76 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
body {
background-color: rgb(28, 27, 31);
display: grid;
grid-template-rows:stretch stretch stretch;
padding: 0%;
margin: 0%;
}
p {
color:whitesmoke ;
padding: .5em .75em;
font-size: 11pt;
}
#navbar {
display: flex;
justify-content: flex-end;
grid-row: 1/2;
height: 60px;
}
#appsicon{
background-color: transparent;
height: 30px;
align-self: center;
padding: .5em .75em;
}
#centerblock{
display: flex;
flex-direction: row;
justify-content: center;
grid-row: 2/3;
justify-content: center;
align-self: center;
flex-wrap: wrap;
padding: 12%;
height: calc(100vh-160px);
}
#searchcontainer{
border: gray;
border-style: solid;
border-width: 1px;
border-radius: 50px;
width: 40%;
height: 50px;
margin: 30px;
display: flex;
justify-content: center;
align-content: center;
}
#searchbar{
background-color: transparent;
border: none;
height: 50px;
flex-basis: 90%;
}
.searchbutton{
margin: 12px;
padding: 5px 20px;
font-size: 13pt;
color: whitesmoke;
height: 3em;
background-color: rgba(137, 137, 167, 0.192);
border-radius: 5px;
border-width: 1px;
border-color:black;
box-shadow: 5px;
}
#searchlogo{
width: 300px;
height: auto;
}
.break{
width: 100%;
height: auto;
}
#lang{
font-family: sans-serif;
}
#footer{
display: flex;
flex-direction: column;
font-family: sans-serif;
grid-row: 3/4;
justify-content: left;
background-color: rgb(22, 19, 19);
height: 100px;
width: 100%;
position: absolute;
bottom: 0;
color: whitesmoke;
}
span:hover{
text-decoration: underline whitesmoke;
text-decoration-skip: word-spacing;
}