-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (75 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (75 loc) · 1.44 KB
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
.img-info{
margin-right: 5px;
rotate: left;
float: left;
margin-left: 5px;
border: oldlace;
height: 200px;
width: 150px;
}
hr {
border: 0;
height: 2px;
background: #333;
background-image: linear-gradient(to right, #ccc, #333, #ccc);
}
p{
color: #3e4147;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.75;
margin-bottom: 2em;
}
.wrapper{
background-color: whitesmoke;
width: 300px;
height: 500px;
margin: auto;
}
.header{
color: lightseagreen;
font-family: Arial, Helvetica, sans-serif;
font-size: large;
margin-right: 10px;
}
body{
background-color: silver;
}
.container{
width: 400px;
height: 700px;
background-color: whitesmoke;
margin-top: 20px;
}
.btn{
margin-top: 10px;
background-color: aquamarine;
text-decoration: azure;
display: block;
}
.footer{
text-align: center;
display: block;
align-self: center;
padding: 0;
border: 0;
bottom: 0px;
background-color: gray;
max-width: 400px;
margin-left: 122px;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 400px) {
.raw {
flex: 50%;
max-width: 50%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.raw {
flex: 100%;
max-width: 100%;
}
}