-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
137 lines (111 loc) · 1.98 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
127
128
129
130
131
132
133
134
135
136
137
/*
Developed By: Shreyans Kumar Jain
url: https://www.facebook.com/shreyansjain33
*/
html, body {
margin: 0;
padding: 0;
width: 100%;
overflow-x: hidden;
}
main {
padding: 2% 5% 0%;
}
h1.head {
font-size: 6em;
}
.base {
border-radius: 15px;
padding: 30px 30px 10px;
background-color: #eee;
text-align: center;
}
.cover_image {
border-radius: 15px;
padding: 10px;
margin: 1px;
background-color: #ccc;
text-align: center;
color: #222;
}
.cover_image .cover {
border-radius: 15px;
width: 100%;
height: auto;
}
.content {
border-radius: 15px;
text-align: left;
background-color: rgba(2,148,165,0.4);
padding: 15px;
font-size: 18px;
}
.content ul {
padding: 0 20vw;
text-align: left;
color: #000;
font-size: 20px;
font-weight: bold;
list-style: disc;
list-style-position: inside;
}
.content ul li {
font-weight: 100;
}
.content ul li strong:after {
content: " - ";
font-weight: 100;
color: #444;
}
.quotes {
padding: 0;
margin: 0;
}
/* Footer code */
footer {
width: 100%;
}
.copyright {
background: #116677;
}
.copyright .ft-devlp {
color: #fff;
font-size: 1em;
margin: 7px 0px 10px;
}
.copyright p.ft-devlp {
color: #fff;
text-align: center;
}
.copyright p.ft-devlp a {
font-family: FontAwesome, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
font-weight: bold;
letter-spacing: 2px;
padding-left: 10px;
text-decoration: none;
margin: 2px;
}
.copyright p.ft-devlp a:hover {
color: #eee;
}
.copyright #heart {
position: relative;
animation: heartbeat 1s infinite;
color: rgba(180, 22, 25, 1.00);
}
@keyframes heartbeat{0%{transform:scale(.75)}20%{transform:scale(1)}40%{transform:scale(.75)}60%{transform:scale(1)}100%,80%{transform:scale(.75)}}
/*RESPONSIVE STARTS*/
@media (max-width: 800px) {
main {
padding: 0;
margin: 0;
}
.base {
margin: 5px;
}
.content ul {
padding: 10px;
}
}
/*End Of File*/