-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
165 lines (136 loc) · 3.22 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
/*text-align center inside the cntainer will center everything inside that does not have width set
Now if it is block element and has width set than you have to center
it using auto value in margin */
body{
margin: 0;
text-align: center;
font-family: 'Acme', sans-serif;;
}
/*Margin affects div's outside. padding affects divs inside */
.top-contrainer{
background-color: #E4F9F5;
position: relative;
padding-top: 100px;
}
.middle-container{
margin: 100px 0;
}
h1{
color: #66BFBF;
margin: 3.13rem auto 0 auto;
font-family: 'Caveat', cursive;
font-size: 562.5%; /* 16px = 100% = 1em */
}
.blockchain{
font-size: 2.5rem;
}
h2{
color: #66BFBF;
font-family: 'Montserrat', sans-serif;
font-size: 2rem;
}
h3{
color: #11999e;
font-family: 'Montserrat', sans-serif;
font-size: 1.875rem;
}
.intro{
width: 30%;
margin: auto ;
}
.bottom-cloud{
position: absolute;
left: 250px;
bottom: 300px;
}
.top-cloud{
position: absolute;
right: 300px;
top: 40px;
}
p{
line-height: 2;
}
.skill-row{
margin: 150px auto 100px auto;
width: 50%;
text-align: left;
}
.computer-image{
width: 25%;
float: left;
margin-right: 30px;
}
/*
.computer-image-discription{
clear: left; /*clear is like anti float
}
*/
.chillie-image{
width: 25%;
float: right;
margin-left: 30px;
}
/*
.chillie-image-discription{
clear: right;
}
*/
.get-in-touch{
font-size: 2.5rem;
}
hr{
border: dotted rgb(194, 149, 149) 6px;
border-bottom: 0;
width: 4%;
margin: 100px auto;
}
.bottom-container{
background-color: rgb(95, 99, 165);
padding: 50px 0 20px;
}
.contact-message{
width: 40%;
margin: 40px auto 60px;
}
.btn {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 7;
-moz-border-radius: 7;
border-radius: 7px;
font-family: 'Montserrat', sans-serif;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
border: solid #2f6180 2px;
text-decoration: none;
}
.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;
}
a{
color: rgb(64, 145, 118);
font-size: 1.3rem;
font-family: sans-serif;
margin: 10px 20px;
text-decoration: none;
}
a:hover{
color: white;
}
.copyright{
color: white;
font-size: 0.75rem;
padding: 20px 0;
}