-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
123 lines (122 loc) · 2.88 KB
/
index.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
body{
margin: 0;
color: #40515E;
}
#my-name{
font-family: 'Square Peg', cursive , sans-serif;
font-size: 780%;
font-weight: 500;
color: #069A8E;
/* remove margin-top when making nav-bar */
margin-top: 0%;
margin-bottom: 0%;
}
#my-job{
font-family: 'Inconsolata', monospace , sans-serif;
color: #069A8E;
}
.first-container{
padding: 2%;
background-color: #E4F9F5;
text-align: center;
position: relative;
}
.top-cloud{
position: relative;
left: 20%;
}
.bottom-cloud{
position: absolute;
left: 27%;
}
.second-container{
padding: 1.5%;
text-align: center;
}
.images{
display: inline-block;
border-radius: 50%;
width: auto;
height: 27%;
}
.images2{
display: block;
margin-left: auto;
margin-right: auto;
height: 27%;
}
.about-me{
text-align: center;
font-family: 'Inconsolata', monospace , sans-serif;
font-size: 120%;
color: black;
font-weight: 600;
width: 40%;
height: auto;
position: relative;
left: 30%;
}
h1{
text-align: center;
color: #069A8E;
font-family: 'Inconsolata', monospace , sans-serif;
font-size: 180%;
}
a{
text-align: center;
color: #16047b;
font-family: 'Inconsolata', monospace , sans-serif;
font-size: 120%;
font-weight: 600;
margin: auto 0.5%;
width: 20.7%;
}
.space{
margin-bottom: 8%;
}
.footer{
position: absolute;
bottom: 0;
left: 35%;
right: 35%;
font-family: 'Inconsolata', monospace , sans-serif;
font-size: 90%;
color: #047b6b;
font-weight: 600;
margin-top: 5%;
display: inline-block;
}
.fourth-container{
position: relative;
background-color: #EFFFFD;
width: auto;
height: 225px;
}
.btn{
background: #11cdd4;
background-image: -webkit-linear-gradient(top, #11cdd4, #11999E);
background-image: -moz-linear-gradient(top, #11cdd4, #11999E);
background-image: -ms-linear-gradient(top, #11cdd4, #11999E);
background-image: -o-linear-gradient(top, #11cdd4, #11999E);
background-image: linear-gradient(to bottom, #11cdd4, #11999E);
-webkit-border-radius: 8;
-moz-border-radius: 8;
border-radius: 8px;
font-family: 'Inconsolata', monospace , sans-serif;
color: #ffffff;
font-size: 20px;
padding: 1%;
text-decoration: none;
position: relative;
top: 15%;
display: inline-block;
}
.btn:hover {
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);
text-decoration: none;
}