-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmycss.css
More file actions
46 lines (43 loc) · 749 Bytes
/
mycss.css
File metadata and controls
46 lines (43 loc) · 749 Bytes
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
/**
* Created by Ramkumar on 02-02-2017.
*/
* {
margin: 0;
padding: 0;
border: none;
outline: none;
font-size: 12px;
}
.inline-container {
margin: 5px;
padding: 5px;
display: inline-block;
}
.main-container {
padding: 50px;
}
/*setting properties for body*/
body {
font-family: Arial, Verdana, Sans-serif;
text-align: center;
padding: 30px 0;
line-height: 20px;
background-color: #557b83;
}
/* setting properties for img tag */
img{
background-color:#39aea9;
width: 150px;
height: 150px;
border: 0px none;
margin: 10px;
border:5px solid #F7F7F7;
}
/* Defining footer class to set the footer in bottom of the page */
#footer {
width: 100%;
position: fixed;
left: 0%;
bottom: 0%;
color: #fcf8e3
}