-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (93 loc) · 1.62 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
*{
background-color: blanchedalmond;
background-size: contain;
background-image: url("images\Background.jpg");
}
.main-header{
text-transform:uppercase;
padding-top:10px;
padding-left:20px;
font-weight: bolder;
}
.main-nav ul{
margin: 0;
text-align:right;
font-size:large;
}
.main-nav li:hover{
background-color: yellow;
opacity: 0.7;
}
.main-nav li{
display: inline;
padding: 0.5em;
margin:10px;
}
.hello{
text-transform:uppercase;
font-size: x-large;
position:relative;
bottom:30px;
right:50px;
font-family:Arial, Helvetica, sans-serif;
}
.about-me{
text-align: center;
}
.about-me h4{
font-size: larger;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.my-profile{
text-align:center;
}
.my-profile img{
border-radius:50%;
}
.other-nav ul{
font-size: large;
text-align:right;
vertical-align: bottom;
}
.other-nav li:hover{
background-color: cyan;
}
.other-nav li{
display: inline;
vertical-align: top;
margin:10px;
padding:1em;
}
.logos{
justify-content:space-around;
display:flex;
inline-size: 200px;
position:fixed;
}
.fa {
padding: 20px;
font-size: 30px;
width: 50px;
text-align:center;
text-decoration: none;
margin: 5px 3px;
}
.fa:hover {
opacity: 0.7;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-twitter {
background: #55ACEE;
color: white;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-instagram {
background: #125688;
color: white;
}