-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
129 lines (110 loc) · 1.88 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
margin:0;
}
.container {
width:100%;
min-height:100vh;
background-color: black;
display: grid;
}
.grid-home{
grid-template-columns: 100%;
}
.grid-games {
grid-template-columns:100%;
}
.container button {
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
padding: 0;
appearance: none;
}
.container a{
text-decoration:none;
color:#97f4fe;
display:grid;
}
.sub{
color:#97f4fe;
text-align:center;
font-size:1.5rem;
}
.button {
width:max-content;
margin: auto;
padding-left: 1rem;
padding-right: 1rem;
text-align:center;
font-size:3rem;
margin-bottom:2rem;
margin-top:2rem;
border-radius:25px;
background-color:black;
color:#97f4fe;
box-shadow: 0px 0px 30px #686868;
}
.author-btn {
width:90%;
text-align:left;
font-size:3rem;
padding-top:0.2rem;
padding-bottom:0.2rem;
margin-left:auto;
margin-right:auto;
margin-bottom:1.5rem;
transition-duration: .4s;
}
.author-btn:hover {
color:#feb897;
box-shadow: none;
}
.screenshot {
width: 33%;
position:relative;
top:10px;
left:10px;
right:10px;
margin-bottom: 1.5rem;
}
.description {
position:absolute;
font-size: 1.5rem;
width: auto;
left: 37%;
right: 7%;
margin-top: 3em;
}
.link-icon-wrapper{
position:fixed;
bottom:1rem;
right:1rem;
display:flex;
justify-content: flex-end;
align-items:flex-end;
}
.link-icon {
width:auto;
height:auto;
margin-right:1rem;
font-size:1rem;
border-radius:10px;
background-color:black;
box-shadow:0px 0px 20px #686868;
padding: 0.5rem;
}
.title {
color:white;
text-align:center;
margin-top: 6rem;
margin-bottom: 6rem;
}
.game-container{
height:100vh
}
.pre-btn {
position:fixed;
top:10px;
left:10px;
}