-
Notifications
You must be signed in to change notification settings - Fork 0
/
develop-games.css
81 lines (67 loc) · 1.04 KB
/
develop-games.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(0, 0, 0);
color: #fff;
}
header {
display: flex;
justify-content: center;
margin-top: 50px;
margin-bottom: 50px;
gap: 100px;
}
header > p {
position: absolute;
top: 0;
left: 0;
margin-top: 10px;
margin-left: 10px;
font-size: 1.3rem;
font-weight: bold;
}
main {
display: flex;
justify-content: center;
margin-top: 40px;
}
ul {
position: sticky;
top: 20px;
left: 0;
}
article {
display: flex;
margin: 0 auto;
flex-direction: column;
width: 920px;
}
.live-dev-stream {
border: 4px solid gray;
position: relative;
right: 75px;
padding: 20px;
text-align: center;
}
.live-dev-stream > h1 {
margin-bottom: 20px;
}
.who-are-you {
border: 4px solid gray;
width: 710px;
margin: 50px;
}
aside {
margin-left: 30px;
}
li, a {
list-style: none;
text-decoration: none;
color: #747474;
}
a:hover {
color: #393939;
}