-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAirStore.css
101 lines (92 loc) · 1.82 KB
/
AirStore.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
body::-webkit-scrollbar {
display: none;
}
#FeaturedApps {
position: relative;
width: 100%;
height: calc(100% - 100px);
background-color: rgba(10, 10, 10, 0.5);
text-align: center;
overflow-x: hidden;
overflow-y: auto;
border-radius: 1em;
display: inline-block;
}
#GithubApps {
position: relative;
width: 100%;
height: calc(100% - 100px);
background-color: rgba(10, 10, 10, 0.5);
text-align: center;
overflow-x: hidden;
overflow-y: auto;
border-radius: 1em;
display: inline-block;
}
#AIApps {
position: relative;
width: 100%;
height: calc(100% - 100px);
background-color: rgba(10, 10, 10, 0.5);
text-align: center;
overflow-x: hidden;
overflow-y: auto;
border-radius: 1em;
display: inline-block;
}
#WebApps {
position: relative;
width: 100%;
height: calc(100% - 100px);
background-color: rgba(10, 10, 10, 0.5);
text-align: center;
overflow-x: hidden;
overflow-y: auto;
border-radius: 1em;
display: inline-block;
}
.CategoryTitle {
position: relative;
top: 10px;
width: calc(100% - 50px);
height: 40px;
display: inline-block;
margin-top: 0.5em;
margin-bottom: 1em;
background-color: rgba(100, 200, 250, 0.75);
line-height: 40px;
color: rgba(200, 250, 250, 0.75);
border-radius: 1em;
}
.AirApp {
position: relative;
width: 8em;
height: 7em;
border-radius: 2em;
display: inline-block;
margin: 0.75em;
background-color: rgba(100, 200, 250, 0.75);
padding-top: 0.5em;
color: rgba(200, 250, 250, 0.75);
overflow: hidden;
}
.AirApp:hover {
background-color: rgba(50, 150, 200, 0.75);
cursor: pointer;
}
.AppTitle {
position: relative;
width: 100%;
height: 2.75em;
border-radius: 0;
display: inline-block;
padding-top: 0.5em;
line-height: 1em;
background-color: rgba(100, 200, 250, 0.75);
color: rgba(200, 250, 250, 0.75);
overflow: hidden;
font-size: 1em;
}
.desc {
font-size: 0.75em;
}