-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
149 lines (117 loc) · 1.96 KB
/
styles.css
File metadata and controls
149 lines (117 loc) · 1.96 KB
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
.top-container{
background-color: #eaf6f6;
position: relative;
padding-top: 100px;
}
.bottom-container{
background-color: #66BFBF;
color: #EAF6F6;
padding: 50px 0;
line-height: 4;
}
.skill-row{
width: 50%;
margin: 100px auto;
text-align: left;
line-height: 2;
}
body{
margin: 0;
text-align: center;
font-family: 'Merriweather', serif;
color: #40514E;
}
h1{
color: #66BFBF;
font-size: 5.625rem;
margin: auto;
margin-top: 50px;
font-family: 'Sacramento', cursive;
}
h2{
color: #66BFBF;
font-size: 2rem;
font-family: 'Montserrat', sans-serif;
margin-top: 0;
}
h3{
color: #11999E;
font-family: 'Montserrat', sans-serif;
}
p{
margin: 0;
}
a{
color: #11999E;
text-decoration: none;
}
a:hover{
color: #EAF6F6;
}
hr{
border-width: 5px;
border-style: dotted none none;
width: 5%;
border-color: #EAF6F6;
padding-bottom: 50px;
}
.cloud-top{
position: absolute;
top: 50px;
right: 300px;
}
.copyright{
color: #EAF6F6;
font-size: .75rem;
}
.cloud-bottom{
position: absolute;
left: 300px;
}
.thinking{
width:25%;
float: left;
margin-right: 30px;
}
.cpp{
width:25%;
float: right;
margin-left: 30px;
}
.round{
border-radius: 50%;
}
.profile{
width: 25%;
margin: auto;
color: #40514E;
line-height: 2;
padding-bottom: 50px;
}
.contact-me{
padding-bottom: 50px;
line-height: 2;
}
.footer-link{
margin: 0 10px;
}
.btn {
background:linear-gradient(to bottom, #11999E 5%, #11999E 100%);
background-color:#11999E;
border-radius:15px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family: 'Montserrat', sans-serif;
font-size:17px;
padding:11px 23px;
text-decoration:none;
}
.btn:hover {
background:linear-gradient(to bottom, #8FCFD1 5%, #8FCFD1 100%);
background-color:#8FCFD1;
}
.btn:active {
position:relative;
top:1px;
}