-
Notifications
You must be signed in to change notification settings - Fork 0
/
Portfolio_CSS.css
150 lines (135 loc) · 2.34 KB
/
Portfolio_CSS.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
html,body {
font-family: 'Open Sans', sans-serif;
text-align: center;
}
* {
margin: 0;
padding: 0;
}
button{
width: 100px;
height: 30px;
border-radius: 30px;
color: red;
}
button:hover{
transform: scale(1.4);
transition-duration: 2s;
}
.transform{
text-shadow: 2px 2px yellow;
}
.transform:hover{
transform: scale(2);
transition-duration: 3s;
}
.intro {
top: 0;
background-image: url(https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/YqGSkmb/futuristic-technology-abstract-background_4k3v6uqwg__F0000.png);
min-height: 55vh;
padding-top: 45vh;
}
.intro p {
color: green;
}
h2{
font-family: cursive;
color: green;
}
nav ul {
text-align: center;
position: fixed;
width: 100%;
background-color: #28ECDE;
}
nav ul li {
display: inline-block;
margin: 55px;
margin-bottom: 15px;
margin-top: 25px;
}
.work {
padding-top: 60px;
margin-top: -60px;
}
.work .work-header {
margin-top: 50px;
color: #008080;
font-weight: normal;
}
.project {
text-decoration: none;
color: #008080;
display: inline-block;
overflow: hidden;
border: 2px solid lightblue;
border-radius: 10px;
height: 220px;
width: 280px;
margin: 40px 100px;
}
.project-pic {
width: 100%;
height: 180px;
border-bottom: 2px solid lightblue;
}
.project-title {
font-weight: bold;
}
@media only screen and (max-width: 500px) {
nav ul {
text-align: center;
}
nav ul li {
margin: 20px;
}
.project {
margin: 40px 0;
}
}
.contact {
background-image: url(http://frederickhiggins.com/celestia/textures/moons/irra.jpg);
padding-bottom: 160px;
}
.header {
padding: 160px 0 110px;
}
.contact-details {
display: inline-block;
font-weight: bold;
margin: 0 35px 45px 35px;
list-style-type: none;
border: 2px solid #90C695;
border-radius: 100%;
width: 100px;
height: 100px;
line-height: 100px;
background: #e0ebe8;
color: #008080;
text-decoration: none;
}
.contact-details:hover {
background: #E4F1FE;
color: green;
transform: scale(1.3);
transition-duration: 2s;
}
footer {
padding: 20px;
background: #22313F;
color: white;
line-height: 40px;
}
footer a {
color: white;
}
@media only screen and (max-width: 367px) {
.contact-details {
border: 2px solid #90C695;
border-radius: 0;
width: 90px;
height: 20px;
padding: 10px;
line-height: normal;
}
}