-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
executable file
·137 lines (124 loc) · 2.42 KB
/
index.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
margin: 5px;
padding: 5px;
background-color: #0F0F0F;
color: white;
font-family: 'Source Code Pro', monospace;
}
label {
padding: 5px;
}
select {
font-family: 'Source Code Pro', monospace;
font-weight: 500;
background-color: #272727;
color: #ffffff;
border-radius: 5px;
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
border:none;
outline: none;
font-size: medium;
transition: 0.5s;
}
select:hover{
background-color: #5a5858;
border:none;
transition: 0.5s;
border-radius: 5px;
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
}
input {
font-family: 'Source Code Pro', monospace;
font-weight: 500;
background-color: #272727;
color: #ffffff;
border-radius: 5px;
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
margin-bottom: 5px;
padding: 5px;
border:none;
outline: none;
font-size: medium;
transition: 0.5s;
}
input:focus {
background-color: #5a5858;
border:none;
transition: 0.5s;
}
button {
font-family: 'Source Code Pro', monospace;
font-weight: 500;
border:none;
background-color: #272727;
color: #ffffff;
border-radius: 5px;
padding: 10px;
margin-bottom: 5px;
margin-top: 5px;
margin-left: 5px;
margin-right: 5px;
transition: 0.5s;
}
button:hover {
background-color: #5a5858;
transition: 0.5s;
}
.app {
padding: 5px;
border-radius: 5px;
background-color: #272727;
aspect-ratio: 1 / 1;
text-align: center;
margin-left: 5px;
margin-right: 5px;
margin-top: 5px;
margin-bottom: 5px;
transition: 0.5s;
}
.app h2{
font-size: 1.2rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
transition: 0.5s;
}
.app:hover {
background-color: #5a5858;
cursor:pointer;
transition: 0.5s;
}
.appimg {
margin-top: 5px;
border-radius: 25px;
object-fit: cover;
transition: 0.5s;
}
.appgrid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 10px;
padding: 10px;
aspect-ratio: 1 / 1;
transition: 0.5s;
}
.hideme {
display: none;
transition: 0.5s;
}