-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (83 loc) · 1.39 KB
/
style.css
File metadata and controls
106 lines (83 loc) · 1.39 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
body {
background: #E5D2E6;
}
.backdrop{
position: absolute;
left: 10%;
width: 80%;
top: 10%;
height: 80%;
filter: grayscale(54%);
opacity: 0.4;
z-index: -1
}
#main-title {
font-size: 64px;
}
#under-main {
padding-top: 10px;
font-size: 20px;
}
#jumbo {
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
opacity: 0.90;
}
.fa {
font-size:72px;
color:#484640;
}
.nav-item {
padding-right: 15px;
}
.bg-dark-pink {
background: #F5EAF4;
}
.row {
display: flex;
}
.column {
flex: 50%;
}
#my-proj {
font-size: 24px;
}
.col-sm-6 {
background-color: #F5EAF4;
opacity: 0.90;
}
.carousel { z-index: -99; } /* keeps this behind all content */
.carousel .item {
position: fixed;
width: 100%; height: 100%;
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-ms-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
}
.carousel .one {
background: url(img/hair.png);
background-size: cover;
-moz-background-size: cover;
}
.carousel .two {
background: url(img/gir.png);
background-size: cover;
-moz-background-size: cover;
}
.carousel .three {
background: url(assets/img/slide1blur.jpg);
background-size: cover;
-moz-background-size: cover;
}
.carousel .active.left {
left:0;
opacity:0;
z-index:2;
}
.proj-pic {
position: relative;
width: 100%
}