Skip to content

Commit 325fd5e

Browse files
authored
Update styles.css
1 parent c029958 commit 325fd5e

File tree

1 file changed

+168
-0
lines changed

1 file changed

+168
-0
lines changed

Fronted Projects/CV/css/styles.css

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,169 @@
1+
body{
2+
color: #40514E;
3+
margin:0;
4+
text-align: center;
5+
font-family: 'Merriweather',serif ;
6+
}
7+
8+
h1{
9+
font-size:5.625rem;
10+
margin:50px auto 0 auto;
11+
font-family: 'Sacramento',cursive ;
12+
color: #66BFBF;
13+
14+
}
15+
16+
h2{
17+
font-family: 'Montserrat',sans-serif ;
18+
font-size: 2.5rem;
19+
color: #66BFBF;
20+
font-weight: normal;
21+
padding-bottom: 10px;
22+
23+
24+
}
25+
26+
h3{
27+
font-family: 'Montserrat',sans-serif ;
28+
color: #11999E;
29+
30+
}
31+
p{
32+
line-height: 2;
33+
}
34+
35+
hr{
36+
border:dotted #EAF6F6 6px;
37+
border-bottom: none;
38+
width: 4%;
39+
margin:100px auto;
40+
}
41+
42+
a{
43+
color: #11999E;
44+
font-family: 'Montserrat',sans-serif ;
45+
margin: 10px 20px;
46+
text-decoration: none;
47+
48+
49+
}
50+
51+
a:hover{
52+
color: #EAF6F6;
53+
}
54+
55+
.top-container{
56+
background-color: #E4F9F5;
57+
position: relative;
58+
padding-top: 100px;
59+
60+
61+
}
62+
63+
.middle-container{
64+
margin: 100px 0;
65+
66+
}
67+
68+
.bottom-container{
69+
background-color: #66bfbf;
70+
padding: 50px 0 20px
71+
72+
73+
}
74+
75+
.pro{
76+
text-decoration: underline;
77+
}
78+
79+
.intro{
80+
width: 30%;
81+
margin:auto;
82+
83+
}
84+
85+
.contact-message{
86+
width:40%;
87+
margin:40px auto 60px
88+
}
89+
90+
.copyright{
91+
color: #EAF6F6;
92+
font-size: 0.75rem;
93+
padding: 20px 0;
94+
}
95+
96+
.bottom-cloud{
97+
position:absolute;
98+
left:50px;
99+
bottom: 300px;
100+
101+
102+
}
103+
104+
.top-cloud{
105+
position: absolute;
106+
right:300px;
107+
top:40px;
108+
109+
}
110+
111+
a{
112+
color: #11999E;
113+
}
114+
115+
.skill-row{
116+
width: 50%;
117+
margin: 100px auto 100px auto;
118+
text-align: left;
119+
120+
121+
}
122+
123+
.programmer{
124+
125+
width: 20%;
126+
float:left;
127+
margin-right: 30px;
128+
129+
130+
}
131+
132+
.gamer{
133+
134+
width: 20%;
135+
float:right;
136+
margin-left: 30px;
137+
138+
}
139+
140+
.btn {
141+
background: #11cdd4;
142+
background-image: -webkit-linear-gradient(top, #11cdd4, #2980b9);
143+
background-image: -moz-linear-gradient(top, #11cdd4, #2980b9);
144+
background-image: -ms-linear-gradient(top, #11cdd4, #2980b9);
145+
background-image: -o-linear-gradient(top, #11cdd4, #2980b9);
146+
background-image: linear-gradient(to bottom, #11cdd4, #2980b9);
147+
-webkit-border-radius: 8;
148+
-moz-border-radius: 8;
149+
border-radius: 8px;
150+
font-family: 'Montserrat',sans-serif ;
151+
color: #ffffff;
152+
font-size: 20px;
153+
padding: 10px 20px 10px 20px;
154+
text-decoration: none;
155+
}
156+
157+
.btn:hover {
158+
background: #30e3cb;
159+
background-image: -webkit-linear-gradient(top, #30e3cb, #2bc4ad);
160+
background-image: -moz-linear-gradient(top, #30e3cb, #2bc4ad);
161+
background-image: -ms-linear-gradient(top, #30e3cb, #2bc4ad);
162+
background-image: -o-linear-gradient(top, #30e3cb, #2bc4ad);
163+
background-image: linear-gradient(to bottom, #30e3cb, #2bc4ad);
164+
text-decoration: none;
165+
}
166+
167+
168+
1169

0 commit comments

Comments
 (0)