Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/css/games.css
27877 views
1
* {
2
padding: 0;
3
margin: 0;
4
}
5
6
7
8
9
body,
10
h1,
11
h2,
12
h3,
13
h4,
14
h5,
15
h6 {
16
font-family: Arial, Helvetica, sans-serif;
17
text-align: center;
18
font-weight: 100;
19
color: white;
20
}
21
22
23
.card:hover {
24
color: aqua
25
}
26
27
#searchbar {
28
padding: 12px 20px;
29
margin: 8px 0;
30
box-sizing: border-box;
31
border: 2px solid #ccc;
32
border-radius: 4px;
33
font-size: 16px;
34
width: 100%;
35
}
36
37
#searchbar:focus {
38
border: 2px solid #555;
39
}
40
41
img {
42
height: auto;
43
max-height: 990px;
44
width: 145px;
45
border: 0;
46
-ms-interpolation-mode: bicubic;
47
vertical-align: middle;
48
border-radius: 25px;
49
max-height: 145px;
50
max-width: 145px;
51
52
}
53
54
.icon {
55
border-radius: 7px;
56
57
}
58
59
60
.card {
61
transition: 0.1s;
62
width: 158px;
63
background-color: transparent;
64
margin: 15px;
65
float: left;
66
}
67
68
69
70
body {
71
background-color: #5e7594;
72
}
73