-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (67 loc) · 970 Bytes
/
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
body {
padding: 0;
margin: 0;
font-family: Montserrat;
text-align: center;
}
h1 {
font-size:40px;
}
h2 {
font-size: 30px;
text-shadow: 3px 3px 0 #B697E6;
}
#header {
background-color: #CAB1F0;
padding:80px;
margin-bottom:50px;
}
#header h1, #header h2 {
color: #ffffff;
text-shadow: 3px 3px 0 #7B4CC2;
}
#about {
margin-bottom: 50px;
}
#about_content {
display:inline-block;
width: 800px;
height: 150px;
}
#about_content img {
float:left;
width: 120px;
margin-right: 50px;
border-radius: 100px;
border: 10px solid #CAB1F0;
}
#about_text {
padding-top:50px;
text-align: left;
}
#projects {
margin-bottom: 50px;
}
#projects p {
width: 500px;
display:inline-block;
}
#projects a {
color: #573091;
}
#projects a:hover {
color: #431B80;
}
#contact {
background-color: #CAB1F0;
padding:80px;
}
#contact a {
color: #ffffff;
text-decoration: none;
padding: 20px;
background: #573091;
}
#contact a:hover {
background: #431B80;
}