-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
78 lines (66 loc) · 1.32 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
html {
scroll-behavior: smooth;
}
.container-fluid {
background-color: #F8B003;
padding-left: 10% !important;
padding-right: 10% !important;
}
.navbar {
box-shadow: 0px 4px 8px rgba(17,17,17,0.2);
}
.navbar-brand {
font-weight: bold;
padding-left: 12%;
}
.row.section {
padding: 5%;
}
.col.main {
background-color: white;
box-shadow: 0 0 50px rgba(17,17,17,0.5);
}
#home {
padding: 20%;
background-image: url("media/pavement.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.bigtext {
text-align: center;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, 0);
color: white;
text-shadow: 0 2px 8px rgba(17,17,17,0.6);
}
img {
border: 4px solid white;
border-radius: 4px;
box-shadow: 0px 4px 8px rgba(17,17,17,0.2);
}
#cvbutton {
color: white;
background-color: #F8B003;
padding: 8px;
border: none;
border-radius: 5px;
transition-duration: 0.3s;
box-shadow: 0px 4px 8px rgba(17,17,17,0.2);
}
#cvbutton:hover {
background-color: darkgoldenrod;
transition-duration: 0.3s;
}
#photography {
background-color: whitesmoke;
}
.thumbnail {
margin: 4%;
}
#contact {
background-image: radial-gradient(#404040, #202020);
}