-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
92 lines (90 loc) · 1.72 KB
/
index.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
body {
margin: 0;
font-family: 'Montserrat', sans-serif;
min-width: 800px;
}
a {
text-decoration: underline;
color: grey;
}
.top {
width: 100%;
height: 700px;
margin-top: 0;
padding-top: 0;
background: url(Images/Birmingham.jpg) no-repeat center;
background-color: rgba(0, 0, 0, 0.671);
background-blend-mode: multiply;
background-size: cover;
color: lightgray;
overflow: hidden;
display: table;
}
.top-text {
position: relative;
top: 0; right: 0;
bottom: 0; left: 0;
width: 100%;
height: 200px;
color: white;
font-size: 36px;
text-align: center;
vertical-align: middle;
display: table-cell;
}
.skills {
margin: auto;
max-width: 800px;
height: 350px;
text-align: center;
}
.row {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
margin: 0px;
padding: 0px;
}
.column {
border: 5px solid rgb(255, 255, 255);
border-radius: 10px;
color: gray;
height: 250px;
}
.column p {
padding: 10px;
margin: 0px;
}
.column:hover {
border: 5px solid rgb(86, 159, 255);
border-radius: 10px;
-webkit-transition: all 1.0s ease-in-out;
-moz-transition: all 1.0s ease-in-out;
-o-transition: all 1.0s ease-in-out;
transition: all 1.0s ease-in-out;
}
/* Clear floats after the columns */
/* .row:after {
content: "";
display: table;
clear: both;
} */
.experience {
margin: auto;
padding: 10px;
width: 100%;
height: 250px;
text-align: center;
background-color: lightgray;
}
.footer {
width: 100%;
height: 200px;
background-color: rgb(43, 43, 43);
color: grey;
text-align: center;
}
.footer img {
width: 32px;
height: 32px;
}