-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
149 lines (131 loc) · 2.47 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
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
body {
color: #40514;
margin: 0;
text-align: center;
font-family: 'Merriweather', serif;
font-size: 140%;
line-height: 2.5;
}
h1 {
color: #66BFBF;
line-height: 1;
font-size: 5.62rem;
margin: 100px auto 0 auto;
font-family: 'Sacramento', cursive;
}
h2 {
color: #66BFBF;
font-family: 'Montserrat', sans-serif;
font-size: 2.5rem;
font-weight: normal;
padding-bottom: 10px;
}
h3 {
color: #11999E;
font-family: 'Montserrat', sans-serif;
}
p {
line-height: 2;
}
hr {
border: dotted #EAF6F6 6px;
border-bottom: none;
width: 4%;
margin: 100px auto;
}
a {
color: #11999E;
font-family: 'Montserrat', sans-serif;
margin: 10px 20px;
text-decoration: none;
}
a:hover {
color: #EAF6F6;
}
.p-header {
color: #66BFBF;
}
.top-container {
background-color: #EAF6F6;
position: relative;
padding-top: 100px;
}
.middle-container {
margin: 100px 0;
}
.bottom-container {
background-color: #66BFBF;
padding: 50px 0 20px;
}
.skill-row {
width: 50%;
margin: 100px auto 100px auto;
text-align: left;
}
.web {
text-decoration: underline;
}
.intro {
width: 30%;
margin: auto;
}
.contact-message {
width: 40%;
margin: 40px auto 60px;
}
.copyright {
color: #EAF6F6;
font-size: 0.75rem;
padding: 20px 0;
}
.top-cloud {
position: absolute;
right: 300px;
top: 40px;
}
.bottom-cloud {
position: absolute;
left: 300px;
bottom: 250px;
}
.computer-man {
width: 25%;
float: left;
margin-right: 30px;
}
.driving {
width: 25%;
float: right;
margin-left: 30px;
}
.p-img {
border-radius: 100%;
margin: auto;
width: 40%;
height: 40%;
}
.btn {
font-family: 'Merriweather', serif;
color: #FFFFFF;
font-size: 20px;
text-shadow: 6px 1px 0 #7CACDE;
box-shadow: 1px 1px 1px #BEE2F9;
padding: 10px 20px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
border: 2px solid #3866A3;
background: #63B8EE;
background: linear-gradient(top, #11CDD4, #11999E);
background: -ms-linear-gradient(top, #11CDD4, #11999E);
background: -webkit-gradient(linear, left top, left bottom, from(#11CDD4), to(#11999E));
background: -moz-linear-gradient(top, #11CDD4, #11999E);
}
.btn:hover {
color: #14396A;
background: #468CCF;
background: linear-gradient(top, #30ECED, #2BC4AD);
background: -ms-linear-gradient(top, #30ECED, #2BC4AD);
background: -webkit-gradient(linear, left top, left bottom, from(#30ECED), to(#2BC4AD));
background: -moz-linear-gradient(top, #30ECED, #2BC4AD);
}