-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (103 loc) · 1.82 KB
/
style.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
/********** TAGS **********/
body {
font-family: "Architects Daughter", cursive;
margin: 0;
text-align: center;
}
h1 {
color: #da7f8f;
font-family: "Covered By Your Grace", cursive;
font-size: 5.4rem;
margin: 50px auto 0;
}
h2 {
color: #da7f8f;
font-size: 2rem;
font-weight: normal;
}
h3 {
color: #da7f8f;
font-weight: normal;
}
.hrule {
border-color: #8f8f8f;
border-style: none;
border-top-style: dashed;
border-width: 2px;
padding-bottom: 10px;
margin-top: 50px;
width: 5.5%;
}
/********** CLASS **********/
.top {
background-color: #e1e5ea;
padding-top: 100px;
position: relative;
}
.mid {
background-color: white;
padding-bottom: 20px;
padding-top: 50px;
}
.bottom {
background-color: #da7f8f;
padding-top: 20px;
}
/* .top-cloud {
}
.bottom-cloud {
} */
.profile-pic {
border-radius: 80px;
height: 80px;
width: 80px;
}
.skill-icon-1 {
float: left;
margin-top: 15px;
margin-right: 30px;
width: 25%;
}
.skill-icon-2 {
float: left;
margin-top: 15px;
margin-left: 30px;
width: 25%;
}
.skill-row {
line-height: 2;
margin: 50px auto;
text-align: left;
width: 40%;
}
.button {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background-color: #da7f8f;
color: #eaf6f6;
cursor: pointer;
display: inline-block;
font-size: 1.5rem;
font-weight: 100;
padding: 12px;
margin-top: 20px;
text-decoration: none;
text-align: center;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.button:hover {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: #eaf6f6;
color: #da7f8f;
text-decoration: none;
}
.footer-link {
color: #eaf6f6;
}
.copyright {
color: #eaf6f6;
}