-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
142 lines (115 loc) · 2.13 KB
/
main.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
#navigator{
list-style-type: none;
margin: 0;
padding: 0;
text-align: right;
padding-bottom: 20px;
}
#navigator li{
margin-left: 70px;
font-family: 'Open Sans Condensed', sans-serif;
position: relative;
display: inline-block;
}
#navigator li a{
color: black;
text-decoration: none;
text-transform: uppercase;
}
#navigator li a:hover{
color: indianred;
}
#header{
height: 380px;
background-image: url("IMG_5107.png");
background-attachment: scroll;
background-repeat: no-repeat;
background-size: 70%;
position: relative;
background-position: center;
}
.socialcontainer{
text-align: right;
margin-right: 135px;
margin-top: 50px;
}
#title{
color: black;
font-family: 'Italiana', serif;;font-size: 90px;
font-weight: 100;
line-height: 0.5ch;
padding-top: 70px;
padding-left: 50px;
margin-bottom: 0;
}
#title2{
color: black;
font-family: 'Nothing You Could Do', cursive; font-size: 50px;
font-weight: 30;
padding-left: 230px;
margin-top: 0;
padding-top: 0;
}
#subject1{
font-family: 'Italiana';;font-size: 30px;
text-align: center;
margin-top: 150px;
margin-bottom: 0;
}
#subject2{
font-family: 'Italiana';;font-size: 30px;
text-align: center;
margin-top: 50px;
}
p{
font-family: 'Open Sans Condensed', sans-serif;
text-align: center;
}
.grid{
color: black;
padding: 35px;
display: flex;
flex-direction: row;
font-family: 'Open Sans Condensed', sans-serif;
padding-bottom: 90px;
padding-top: 50px;
}
.grid figure{
margin: auto;
width: 200px;
text-align: center;
}
.grid figure img{
width: 200px;
box-shadow: grey 0 0 5px;
opacity: 1;
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
figure:hover img {
opacity: .5;
}
.fa {
padding: 20px;
font-size: 30px;
width: 20px;
text-align: center;
text-decoration: none;
margin: 5px 5px;
border-radius: 50%;
}
.fa-linkedin {
color: black;
box-shadow: grey 0 0 5px;
}
.fa-instagram {
color: black;
box-shadow: grey 0 0 5px;
}
.fa-youtube {
color: black;
box-shadow: grey 0 0 5px;
}
.fa:hover {
transform: translate(0, -10px);
}