-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
133 lines (124 loc) · 2.85 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
body {
font-family: verdana, sans-serif;
text-align: center;
margin: 0px;
font-family: 'Merriweather', serif;
}
h1 {
font-size: 5.625rem; /* 16px = 1em = 100% */
color: #66BFBF;
margin: 50px auto 0;
font-family: 'Sacramento', cursive;
}
h2 {
font-family: 'Montserrat', sans-serif;
font-size: 2.5rem;
color: #66BFBF;
font-weight: bold;
}
h3 {
font-family: 'Montserrat', sans-serif;
color: #11999E;
font-weight: bold;
}
p {
margin-top: 0;
color: #40514E;
font-weight: 600;
}
.top-container {
background-color: #EAF6F6;
position: relative;
padding-top: 100px;
}
.middle-container{
margin: 100px auto;
}
.bottom-container{
background-color: #66BFBF;
padding: 30px;
}
.bottom-cloud {
position: absolute;
top: 450px;
left: 400px;
}
.top-cloud {
position: absolute;
top: 100px;
right: 400px;
}
.profile{
border-radius: 50%;
margin: 4px auto;
max-width: 40%;
height: auto;
}
a{
color: #11999E;
padding: 25px;
font-weight: bold;
text-decoration: none;
}
a:hover{
color: #EAF6F6;
}
.skill-row{
width: 50%;
margin: 100px auto;
text-align: left;
line-height: 2;
}
.skill-img1{
width: 25%;
float: left;
margin-right: 20px;
}
.skill-img2{
width: 25%;
float: right;
margin-left: 20px;
}
hr{
color: #EAF6F6;
border-style: dotted none none;
border-width: 0.625rem;
width: 6%;
margin: 100px auto;
}
.copyright{
color: #EAF6F6;
margin-top: 30px;
font-weight: 300;
font-size: 0.75rem;
}
.btn {
background: #34cbd9;
background-image: -webkit-linear-gradient(top, #34cbd9, #2b66b8);
background-image: -moz-linear-gradient(top, #34cbd9, #2b66b8);
background-image: -ms-linear-gradient(top, #34cbd9, #2b66b8);
background-image: -o-linear-gradient(top, #34cbd9, #2b66b8);
background-image: linear-gradient(to bottom, #34cbd9, #2b66b8);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
text-shadow: 1px 1px 3px #666666;
-webkit-box-shadow: 0px 0px 21px #666666;
-moz-box-shadow: 0px 0px 21px #666666;
box-shadow: 0px 0px 21px #666666;
font-family: Georgia;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
line-height: 5;
}
.btn:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}