-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (97 loc) · 1.71 KB
/
styles.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
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
html,
body {
background-color: #171717;
}
.jumbotron {
background-color: #202020;
box-shadow: 0px 6px 12px -2px rgba(0, 0, 0, 0.2);
}
.jumbotron .content {
padding: 64px 0 16px 0;
width: 50%;
margin: auto;
}
.jumbotron h1 {
font-size: 3rem;
margin-bottom: 32px;
color: #ddd;
}
.jumbotron .name {
color: #60b196;
}
.jumbotron p {
font-size: 1.3rem;
color: #aeaeae;
}
.wrapper {
margin: auto;
width: 50%;
}
.socials-youtube {
transition: all 50ms ease-in-out;
margin-top: 32px;
display: inline-block;
color: white;
padding: 8px 8px 4px 8px;
border-radius: 8px;
}
.socials-youtube:hover {
background-color: #ffffff14;
box-shadow: 0px 6px 6px -6px rgba(0, 0, 0, 0.4);
}
.socials-youtube span {
display: inline-block;
color: white;
transform: translate(0, -50%);
margin-left: 12px;
}
.game-link {
transition: all 100ms ease-in-out;
position: relative;
background-color: #202020;
height: 300px;
margin: 32px 0;
box-shadow: 0px 6px 12px -2px rgba(0, 0, 0, 0.4);
}
.game-link:hover {
filter: brightness(1.1);
box-shadow: 0px 16px 28px -10px rgba(0, 0, 0, 0.4);
}
.game-text {
width: 50%;
padding: 32px;
}
.game-text .title {
font-size: 3rem;
color: #ddd;
}
.game-text .engine {
margin-bottom: 32px;
color: #616161;
}
.game-text .description {
color: #aeaeae;
}
.game-picture {
position: absolute;
right: 0;
top: 0;
width: 50%;
height: 100%;
}
.game-picture img {
max-width: 100%;
max-height: 100%;
float: right;
}