-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (107 loc) · 2.07 KB
/
style.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
body {
margin: 0;
text-align: center;
font-family:'Merriweather', serif;
background-color:seashell;
}
h1 {
margin: 20px auto 0px auto;
font-family: 'Sacramento', cursive;
font-size:5.625rem;
color: magenta;
}
h2 {
font-family: 'Montserrat', sans-serif;
font-size: 2rem;
color: darkslateblue;
}
h3{
font-family: 'Montserrat', sans-serif;
color:slategray;
}
.topcontainer {
background-color: cornsilk;
position: relative;
padding-top: 100px;
}
.bottemcloud {
position: absolute;
left: 300px;
right: 300px;
}
.topcloud{
position: absolute;
right: 300px;
top:50px;
}
.birds{
position: absolute;
height: 250px;
width:250px;
right:310px;
top: 110px;
}
.my-image{
margin-top: 50px;
height:250px;
width: 250px;
}
.tech{
width:45%;
float: left;
margin-right: 25px;
}
hr{
border: dotted magenta ;
width: 30%;
}
.Cricket{
width:30%;
border-radius:50%;
margin-top: 30px;
float:right;
margin-left: 25px;
}
.skill-row{
width: 50%;
margin:auto;
text-align: left;
margin: 100px auto 100px auto;
line-height: 3;
}
.btn {
background: #61b3e6;
background-image: -webkit-linear-gradient(top, #61b3e6, #2877a8);
background-image: -moz-linear-gradient(top, #61b3e6, #2877a8);
background-image: -ms-linear-gradient(top, #61b3e6, #2877a8);
background-image: -o-linear-gradient(top, #61b3e6, #2877a8);
background-image: linear-gradient(to bottom, #61b3e6, #2877a8);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: 'Merriweather', serif;
color: #fff5ff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #135d8a;
text-decoration: none;
}
.bottemcontainer{
margin-top: 30px;
background-color: rgb(214, 163, 163);
padding: 40px 0px 20px;
}
a{
color: blue;
margin: 20px 20px;
font-family:'Montserrat', sans-serif;
text-decoration: none;
}
a:hover{
color: whitesmoke;
font-weight:bolder;
font-size: larger;
}