-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
126 lines (102 loc) · 2.07 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
body{
margin: 0;
text-align: center;
font-family: 'Merriweather', serif;
}
h1{
margin-top: 0;
font-family: 'Sacramento', cursive;
font-size: 5.625rem;
color: #219F94;
}
h2{
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
color: #219F94;
}
h3{
font-family: 'Montserrat', sans-serif;
color: #219F94;
}
hr{
border: dotted 6px #219F94;
border-bottom: none;
width: 4%;
margin: 100px auto 100px auto;
}
.top-container{
background-color: #F3C892;
padding-top: 100px;
}
.skill-row{
width: 50%;
margin: 100px auto 100px auto;
text-align: left;
line-height: 2;
}
.skills{
background-color: #F3C892;
}
.middle-container{
background-color: #F3C892;
}
.bottom-container{
background-color: #219F94;
padding: 50px 0 20px
}
.mount{
width: 75%;
padding-top: 200px
}
.code-bi{
width: 25%;
float: left;
margin-right: 30px
}
.teamwork-pic{
width: 25%;
float: right;
margin-left: 30px
}
.profile-image{
width: 25%
}
.top-cloud{
position: absolute;
top: 200px;
right: 300px;
}
.bottom-cloud{
position: absolute;
top: 400px ;
left:100px;
}
.contact-me{
padding: 50px;
line-height: 3;
}
.btn {
background: #34d9a7;
background-image: -webkit-linear-gradient(top, #34d9a7, #2bb8b3);
background-image: -moz-linear-gradient(top, #34d9a7, #2bb8b3);
background-image: -ms-linear-gradient(top, #34d9a7, #2bb8b3);
background-image: -o-linear-gradient(top, #34d9a7, #2bb8b3);
background-image: linear-gradient(to bottom, #34d9a7, #2bb8b3);
-webkit-border-radius: 8;
-moz-border-radius: 8;
border-radius: 8px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #3cfcef;
background-image: -webkit-linear-gradient(top, #3cfcef, #34d9c8);
background-image: -moz-linear-gradient(top, #3cfcef, #34d9c8);
background-image: -ms-linear-gradient(top, #3cfcef, #34d9c8);
background-image: -o-linear-gradient(top, #3cfcef, #34d9c8);
background-image: linear-gradient(to bottom, #3cfcef, #34d9c8);
text-decoration: none;
}