-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (74 loc) · 1.39 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
body, html{
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
}
body {
background-image: url('img/bg.png');
background-attachment: fixed;
background-size: cover;
}
.container {
display: flex;
text-align: center;
align-items: center;
justify-content: center;
margin-top: 20px;
}
#githubrepos {
display: flex;
flex-wrap: wrap;
width: 800px;
}
.githubrepo {
width: 150px;
height: 50px;
padding: 10px;
border: 1px solid gold;
margin: 5px;
}
.githubrepo:hover {
border: 1px solid red;
}
.content{
color: aliceblue;
max-width: 600px;
margin-bottom: 40px;
}
a {
font-family: 'Roboto Condensed', sans-serif;
text-shadow: 4px 4px 4px rgb(21, 21, 21);
font-size: 1,2em;
color: aliceblue;
text-decoration: none;
}
.textbox {
font-family: 'Roboto Condensed', sans-serif;
color: aliceblue;
text-shadow: 1px 1px 3px rgb(0, 0, 0);
padding-top: 20px;
}
#planets {
margin:auto;
text-align: center;
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: center;
padding-bottom: 150px;
max-width: 800px;
}
.planet img {
width:40%;
}
#sat {
margin:auto;
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: center;
margin-top: 50px;
max-width: 800px;
margin-bottom:40px;
}