-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (85 loc) · 1.65 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
*{
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
.pawan{
width: 100%;
padding: 0 5%;
display: flex;
flex-direction: column;
height: 70vh;
justify-content: space-between;
}
.pawanone{
padding: 5%;
}
html{
font-family: 'Abel', sans-serif !important;
}
iframe{ border-radius: 20px !important;}
footer{
font-style: italic;
background: #00aced4a;
display: flex;
position:fixed;
width: 100%;
bottom: 0%;
justify-content: center !important;
align-items: center !important;
font-size: 1.2rem;
padding: 1.2rem 1rem 1rem 1rem;
}
/* //social icons */
ul.socialIcons {
padding: 0;
text-align: center;
}
.socialIcons li {
background-color: yellow;
list-style: none;
display: inline-block;
margin: 4px;
border-radius: 2em;
overflow: hidden;
}
.socialIcons li a {
display: block;
padding: 0.47em;
min-width: 2.285714em;
max-width: 1.28571429em;
height: 2.285714em;
white-space: nowrap;
line-height: 1.5em; /*it's working only when you write text with icon*/
transition: 0.5s;
text-decoration: none;
font-family: arial;
color: #fff;
}
.socialIcons li i {
margin-right: 0.5em;
}
.socialIcons li:hover a {
max-width: 200px;
padding-right: 1em;
}
.socialIcons .facebook {
background-color: #3b5998;
box-shadow: 0 0 16px #3b5998;
}
.socialIcons .twitter {
background-color: #00aced;
box-shadow: 0 0 16px #00aced;
}
.socialIcons .instagram {
background-color: #cd486b;
box-shadow: 0 0 16px #cd486b;
}
.socialIcons .linkedin {
background-color: #0077b5;
box-shadow: 0 0 16px #0077b5;
}
.socialIcons .github {
background-color: #666666;
box-shadow: 0 0 16px #666666;
}