forked from rocketacademy/portfolio-page-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
109 lines (98 loc) · 1.77 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
* {
margin: 10;
padding: 10;
/* background-image: linear-gradient(62deg, rgb(82, 32, 32) 0%, rgb(58, 7, 7) 100%); */
}
h1,h2 {
font-family: "Raleway", sans-serif;
font-weight: 700;
text-align: center;
background-color: rgba(0, 0, 0, 0);
color: rgb(245, 179, 179);
}
p {
color: aquamarine;
}
a{
color: rgb(245, 245, 82);
}
#navbar {
display: flex;
flex-direction: column;
padding: 20px;
background-color: black;
}
#welcome-section {
font-size: 20px;
font-weight: 100;
font-family: Haettenschweiler, "Arial Narrow Bold", sans-serif;
background-color: rgb(1, 1, 77);
padding: 20px 10px 30px;
text-align: center;
background-image: linear-gradient(62deg, #3a3d40 0%, #181719 100%);
}
#projects{
background-color: rgb(37, 9, 9);
}
.wrapper {
display: flex;
flex-direction: column;
}
.project-tile a {
padding-bottom: 10px;
align-self: center;
}
.project-tile p {
padding-bottom: 20px;
line-height: 125%;
text-align: center;
}
.project-tile img {
width: 100%;
}
.project-tile {
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
#welcome-section {
padding-bottom: 60px;
}
.project-tile {
flex-direction: row;
}
.project-tile a {
align-self: flex-start;
padding-left: 20px;
}
.project-tile p {
text-align: left;
padding-left: 20px;
}
footer {
padding: 20px;
}
}
@media only screen and (min-width: 1000px) {
#projects {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
.project-tile {
max-width: 30%;
display: flex;
flex-direction: column;
padding: 10px 30px;
}
}
#chicken, #rps, #temp{
height: 550px;
width: 550px;
}
#p1 {
text-align: left;
}