-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathmain.css
115 lines (96 loc) · 1.72 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
overflow-x: hidden;
}
.header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100vw;
height: 200px;
background-image: url("https://amymhaddad.s3.amazonaws.com/oriental-tiles.png");
}
.name{
padding: 10px;
font-weight: bold;
font-size: 50px;
letter-spacing: 5px;
color: white;
text-shadow: 2px 2px 2px black;
}
.job-title{
color: white;
opacity: 80%;
letter-spacing: 1px;
}
.tagline{
padding: 10px;
color: black;
background-color: rgb(182, 222, 208);
}
.tagline h3{
font-weight: 800;
font-size: larger;
margin: 5px auto;
letter-spacing: 2px;
}
.tagline p{
font-weight: 400;
margin: 10px 0;
font-size: large;
}
.college-name{
color: blue;
font-weight: 600;
}
.skills{
color:black;
padding: 10px;
background-color: rgb(219, 202, 180);
}
.skills h3{
font-size: larger;
font-size: larger;
font-weight: 800;
letter-spacing: 2px;
padding: 5px 0;
margin: 5px 0;
}
.skills p{
font-weight: 400;
margin: 5px 0;
font-size: large;
}
.skills ul{
padding: 10px 0;
margin:5px 0;
}
.skills ul li {
padding: 5px 0;
margin:5px 10px;
}
.contact{
display: flex;
flex-direction: column;
justify-content: center;
color: white;
height: 180px;
padding: 10px;
background-color: blueviolet;
}
.contact h3{
font-size: larger;
font-size: larger;
font-weight: 800;
letter-spacing: 2px;
padding: 5px 0;
margin: 2px 0;
}
.contact p a{
cursor: pointer;
padding: 5px 0;
color: black;
}