-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.css
128 lines (107 loc) · 1.78 KB
/
portfolio.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
* {
margin: 0;
padding: 0;
}
html {
color: #1D5962;
}
section {
padding: 1%;
background-color: #66C3D1;
}
section:nth-of-type(2n) {
background-color: #D5D7D8;
}
.profile-pic {
width: 200px;
border-radius: 50px;
}
/*Colors used (courtesy of Cloudflare Designs)
parent bg: #66C3D1
color: #1D5962
bg: #D5D7D8
border: #2D1832
*/
svg {
padding: 0;
/* border-radius: 50%; */
}
svg:hover {
padding: 0.25px;
border: 1px solid lightskyblue;
}
section {
min-height: 500px;
text-align: center;
padding-top: 80px;
/* background: #252525;
color: lightblue; */
}
/* .accent-color {
background: lightblue;
color: #252525;
} */
h1 {
font-size: 60px;
}
h2,
h3 {
font-size: 48px;
}
.project-container {
margin-top: 30px;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
padding-bottom: 50px;
}
.project {
height: 650px;
width: 28%;
border: 3px dotted white;
flex-grow: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
margin: 30px 20px;
border-radius: 15px;
}
.work h2 {
color: rgb(1, 1, 161);
}
.project h4 {
padding: 10px;
color: rgb(1, 1, 161);
font-size: 20px;
text-decoration: underline rgb(1, 1, 161);
}
.project img {
height: 350px;
width: 100%;
}
a.title {
color: rgb(1, 1, 161);
}
a.title:hover,
a.title:focus {
color: rgb(74, 130, 235);
}
a.bottom-link {
display: block;
margin-top: 10px;
background: rgb(74, 130, 235);
padding: 8px 5px;
text-decoration: none;
color: white;
border-radius: 15px;
}
a.bottom-link:hover,
a.bottom-link:focus {
background: navy;
}
.project p {
height: 175px;
padding: 0 10px;
font-size: 14px;
}