-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
105 lines (100 loc) · 2.38 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
body{
margin: 0;
text-align: center;
font-family:'Courier New', Courier, monospace;
color: #f4f800;
}
h1{
color:rgb(28, 48, 227);
font-size: 36px;
margin:10px auto 100px auto;
font-family: cursive;
background-color:rgb(237, 74, 126);
}
h2{
color:darkblue;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: coral;
width: 30%;
}
h3{
color:purple;
font-family: 'Courier New', Courier, monospace;
background-color: rgb(193, 233, 99);
}
h4{
color:green;
font-size: 20px;
margin:auto;
background-color: yellow;
}
.profile{
background-color: aqua;
}
.logo{
width: 30%;
padding-top: 50px;
}
.skill-img{
width: 11em;
}
p{
color:rgb(0, 64, 255);
}
.middle-container{
margin: 10px;
}
hr{
border: dotted rgb(225, 209, 209) 6px;
border-bottom: none;
width: 6%;
margin-top: 5%;
margin-bottom: 5%;
}
.contact-message{
width: 40%;
margin: 40px auto 60px;
}
.btn {
background: #7ad9ff;
background-image: -webkit-linear-gradient(top, #7ad9ff, #e349d9);
background-image: -moz-linear-gradient(top, #7ad9ff, #e349d9);
background-image: -ms-linear-gradient(top, #7ad9ff, #e349d9);
background-image: -o-linear-gradient(top, #7ad9ff, #e349d9);
background-image: linear-gradient(to bottom, #7ad9ff, #e349d9);
-webkit-border-radius: 7;
-moz-border-radius: 7;
border-radius: 7px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 5px 20px 5px 20px;
text-decoration: none;
}
.btn:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
.bottom-container{
background-color: #91d7f3;
margin-top: 50px;
margin-bottom: 0;
padding:20px 0 20px;
}
a{
color: #f80800;
font-family:Arial, Helvetica, sans-serif;
text-decoration: none;
}
a:hover{
color: #e5fc1a;
}
.copyright{
color: #ffffff;
font-size: 1rem;
}