-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylesheet.css
174 lines (164 loc) · 3.63 KB
/
stylesheet.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
body{
padding:0px;
margin:0px;
box-sizing:border-box;
}
.header{
background: url("bg.png") ;
background-position: center;
background-repeat: no-repeat;
height:auto;
background-size: cover;
width: 100%;
}
.navigationmenu a{
color:rgb(255, 255, 255);
font-family: Gigi ;
font-weight: bold;
font-size: 30px;
font-style: italic;
margin-right:40px;
margin-left:40px;
border: 2px solid rgb(255, 255, 255);
padding:10px 30px;
transition: 1s;
align-items: center;
height: 100px;
width: 100%;
}
.navigationmenu a:hover{
background: rgb(0, 168, 154);
border:5px solid rgb(255, 255, 255);
transition-duration: 2s;
animation: ease-in;
height: 100px;
width: 100%;
}
.intro img{
width: 10%;
height: auto;
border-spacing: 9px;
border:3px solid black;
margin-right: 30%;
margin-top: 20px;
margin-left: 50px;
}
.intro p{
font-family:freestyle script;
font-size: 50px;
text-align:center;
color:white;
padding-right:35%;
}
.intro span {
color:rgb(255, 238, 2);
font-family: Gigi ;
font-size: 70px;
}
.about-me p{
text-align: center;
margin: 0 10%;
font-family: papyrus;
font-size: 20px;
}
.about-me h2{
font-style: normal;
font-weight: bolder;
font-family: vivaldi;
text-align: center;
margin:3% 10%;
font-size:40px;
border-bottom: 2px solid royalblue;
}
.about-me{
background-color: rgb(70, 229, 250);
padding:5px 20px;
}
.about-me, .skills, .qualifications, .contact{
border:1px solid black;
}
.skills{
text-align: center;
margin:10%;
background-color: rgb(85, 234, 253);
}
.skills h2{
font-style: normal;
font-weight: bolder;
font-family: vivaldi;
text-align: center;
margin:3% 10%;
font-size:40px;
border-bottom: 2px solid royalblue;
}
.skills p{
text-align: center;
margin: 0 10%;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 20px;
}
.qualifications{
text-align: center;
margin:10%;
padding-top:20px;
background-color: rgb(79, 230, 250);
}
.qualifications h2{
font-style: normal;
font-weight: bolder;
font-family: vivaldi;
text-align: center;
margin:3% 10%;
font-size:40px;
border-bottom: 2px solid royalblue;
}
.qualifications p{
text-align: center;
margin: 0 10%;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 30px;
}
.contact{
text-align: center;
margin:10%;
padding-top:20px;
background-color: rgb(76, 228, 248);
}
.contact h2{
font-style: normal;
font-weight: bolder;
font-family: vivaldi;
text-align: center;
margin:3% 10%;
font-size:40px;
border-bottom: 2px solid royalblue;
}
.qualifications span{
color: rgb(255, 2, 87);
}
.contact {
background: url("contact.png");
background-repeat: no-repeat;
background-size: cover;
height: 600px;
}
.contact p{
text-align: center;
margin: 1% 20%;
padding:0 10%;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 50px;
}
.skills:hover,.qualifications:hover,.about-me:hover,.contact:hover{
background-color: rgb(196, 138, 219);
width: 900px;
height: 700px;
margin: 50px 50px;
transition-duration: 1s;
}
.intro h1{
font-family: 'Times New Roman', Times, serif;
text-align: top;
font-size: 50px;
color: white;
}