-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylings.css
More file actions
119 lines (117 loc) · 2.04 KB
/
stylings.css
File metadata and controls
119 lines (117 loc) · 2.04 KB
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
html{
background: rgb(0,255,255);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1e767', endColorstr='#feb645',GradientType=0 );
text-align:center;
background-color: gainsboro;
}
#opaque{
border: 3px solid black;
position: relative;
}
#background{
background-image: url("https://www.dealfuel.com/wp-content/uploads/2015/06/tessellation-patterns-purple-1024x576.jpg");
opacity:0.7;
position:absolute;
top:0; bottom: 0; left:0; right:0;
z-index:-1;
}
#content{
z-index:0;
}
.name {
padding:50px;
}
.row {
padding:10px;
flex-direction:column;
display:flex;
flex-wrap:noWrap;
font-size:20px;
}
.headshot {
width:20%;
height:20%;
border-radius: 50%;
border: 3px solid black;
}
.projects {
}
.mid{
color:black;
justify-content:center;
margin: auto;
flex-direction:row;
font-size:50px;
margin-top:5px;
margin-bottom:5px;
}
.aboutme{
border:1px solid black;
}
#portfolio{
display:flex;
justify-content:center;
flex-direction:row;
}
.links{
padding:5px;
}
.projects{
display: flex;
justify-content:space-around;
flex-direction:row;
}
.project {
border: 2px black solid;
width: 300px;
height: 300px;
}
.project:hover {
background:lightGray;
}
.projectImg {
width: 80%;
height: 80%;
}
.headerBar{
background: black;
opacity:0.8;
width:100%;
height:100px;
}
.gallery{
padding-top:60px;
flex-wrap:wrap;
flex-direction:column;
justify-content: center;
}
.inGallery{
width:250px;
height:250px;
padding: 5px;
background-color:black;
transition: transform .2s;
}
.inGallery:hover{
transform: scale(2.0);
padding:10px;
}
.dropdown{
position:relative;
display:inline-block;
}
.dropdown .dropdown-menu {
position: absolute;
top:70%;
display:none;
left: 0;
margin: 0;
width:100%;
padding:0;
list-style:none;
border:2px solid black;
}
.dropdown:hover .dropdown-menu{
display:block;
background:lightGray;
}