-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (125 loc) · 2.56 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
126
body{
color: #40514E;
margin: 0;
text-align: center;
font-family: 'Merriweather', serif;
font-size: 100%;
}
h1{
font-size: 5.625rem;
width: 50%;
margin: 0 auto; /*top and bottom 0 and left and right automatic page length*/
font-family: 'Sacramento';
color: #000000;
line-height:2 ;
}
h2{
margin-top: 0;
font-family: 'Montserrat';
font-size: 2.5rem; /*root elements font size rem*/
color: #000000;
font-weight: normal;
padding-bottom: 10px;
}
h3{
font-family: 'Montserrat';
color: #11999E;
}
a{
color: #11999E;
font-family: 'Montserrat';
margin: auto 10px;
text-decoration: none;
}
a:hover{
color: #000000;
}
p{
line-height: 2;
}
hr{
border: dotted gray;
border-bottom: none;
width: 4%;
margin: 100px auto;
}
.intro{
width: 30%;
margin: auto
}
.top-container{
background-color: skyblue;
position: relative;
padding-top: 100px;
}
.bottom-cloud{
position: absolute;
left: 300px;
bottom: 300px;
}
.top-cloud{
position: absolute;
right: 300px;
top: 50px;
}
.skill-row{
width: 50%;
margin: 100px auto;
text-align: left;
line-height: 2;
}
.prof{
padding: 5px;
width: 25%;
}
.computer{
width: 25%;
float: left;
margin-right: 30px;
}
.giphy{
width: 40%;
float: right;
margin-left:30px;
}
.contact-message{
width: 40%;
margin: 40px auto 60px;
}
.contact-me{
margin-bottom: 20px;
}
.copyright{
color: #000000;
font-size: 0.75rem;
padding: 20px 0;
}
.btn {
background: #11cdd4;
background-image: -webkit-linear-gradient(top, #11cdd4, #11cdd4);
background-image: -moz-linear-gradient(top, #11cdd4, #11cdd4);
background-image: -ms-linear-gradient(top, #11cdd4, #11cdd4);
background-image: -o-linear-gradient(top, #11cdd4, #11cdd4);
background-image: linear-gradient(to bottom, #11cdd4, #11cdd4);
-webkit-border-radius: 8;
-moz-border-radius: 8;
border-radius: 8px;
font-family: 'Montserrat';
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
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;
}
.bottom-container{
background-color: lightgreen;
padding: 50px 0 20px;
}