-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (70 loc) · 1.21 KB
/
styles.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
* {
box-sizing: border-box;
}
/* general styles */
body {
background-color: rgb(5, 7, 29);
padding: 25px 25px;
font-size: 18px;
font-family: Avenir, Arial, Helvetica, sans-serif;
color: rgb(240, 240, 255);
}
h1,
h2,
p {
text-align: center;
}
a {
color: rgb(3, 115, 255);
text-decoration: none;
}
a:hover {
color: rgb(240, 240, 255);
text-decoration: underline;
}
/* Style for header area */
#tagline {
margin: 10px;
}
#tagline p {
font-weight: bold;
}
#headshot-container {
background-size: cover;
}
#headshot {
margin: 50px auto;
height: 100%;
width: 100%;
min-width: 325px;
min-height: 325px;
max-height: 500px;
max-width: 500px;
display: block;
border-radius: 5px;
box-shadow: 15px 12px 250px rgb(96, 62, 96);
}
/* Style for paragraphs */
#my-story {
margin: 50px 10vw;
line-height: 1.5em;
}
/* Style for project area */
#projects {
margin: 25px 0;
}
.cardglow {
box-shadow: 0px 0px 20px 0px red;
}
/* Style for footer area */
#contact-info {
border: 1px solid rgba(128, 128, 128, 0.25);
border-radius: 5px;
margin: 25px auto;
padding-bottom: 25px;
min-width: 40%;
max-width: 400px;
text-align: center;
font-weight: bold;
word-spacing: 0.5em;
}