-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
179 lines (150 loc) · 3.33 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*CSS*/
body{
/*background-color: powderblue;*/
color: #40514E;
text-align: center;
font-family: 'Merriweather', serif;
}
h1{
width:20%;
font-size: 60px;
line-height:2;
color: #108181;
margin: 0 auto 0 auto; /*If you set the width yourself then margin should be written like this for centereing*/
margin-top: 0;
font-family: 'Sacramento', cursive;
}
h2{
/*font-family: 'Montserrat', sans-serif;*/
font-family: 'Merriweather', serif;
color: #108181;
font-weight: normal;
position: relative;
/*padding-right: 10px;*/
padding-bottom: 10px;
}
h3{
font-family: 'Montserrat', sans-serif;
color: #0b7478;
}
h4
{
color: #021d1e;
}
.top-container
{
position: relative;
background-color: #E4F9F5;
padding-top: 100px;
}
.web
{
text-decoration: underline;
}
.bottom-cloud
{
position: absolute;
left: 250px;
bottom: 300px;
}
.top-cloud
{
position: absolute;
right: 300px;
top: 40px;
}
.middle-container
{
/*position: relative;
padding-top: 40px;*/ /*alternate way to do the following */
margin: 100px 0; /*short hand use 100px for top and bottom and 0 for left and right image niche aayega mountain se*/
}
.skill-row
{
width:50%;
margin: 100px auto 100px auto;
text-align: left;
/*line-height: 2;*/
}
.hacker-img
{
width: 25%;
height: 25%;
float: left;
margin-right: 30px;
}
.coding-img
{
width: 25%;
height: 25%;
float: right;
margin-left: 30px;
}
.intro
{
width:30%;
margin: auto;
}
p{
line-height: 2; /*just for some extra spacing in paragraphs*/
}
hr
{
border:dotted #d2d5d5 6px;
border-bottom: none;
width: 4%;
margin: 100px auto;
}
.contact-me
{
width:40%;
margin:40px auto 60px;
}
/*The following content is pasted code from css button generator website*/
.btn {
background: #30e3cb;
background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad);
background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad);
background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad);
background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad);
background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad);
-webkit-border-radius: 15;
-moz-border-radius: 15;
border-radius: 15px;
font-family: Arial;
color: white;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.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;
}
.bottom-container
{
background-color: #66BFBF;
padding: 50px 0 20px;
}
a
{
color: #0a5d62;
font-family: 'Merriweather', serif;
margin: 10px 20px;
text-decoration: none;
}
a:hover
{
color: #EAF6F6;
}
.copyright
{
color: #EAF6F6;
font-size: 0.75rem;
padding: 20px 0;
}