-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (68 loc) · 1.22 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (68 loc) · 1.22 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
Body{
background-image: url('https://content-images.p-cdn.com/images/public/int/3/2/2/9/794558029223_1080W_1080H.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
color: white;
}
.container {
display: grid;
grid-template-columns: auto;
padding: 10px;
grid-row-gap: 20px;
grid-column-gap: 20px;
}
ul{
list-style-type: none;
width: 100%;
overflow: hidden;
margin: 0;
top: 0;
position: fixed;
float: right;
background-color: #557a95;
color: white;
}
li{
display: inline;
float: left;
}
li a{
display: block;
text-decoration: none;
padding: 5px 50px;
color: white;
}
li a:hover{
color: black;
}
.item1{
background-color: #b1a296;
border: 1px solid #fff;
padding: 5px;
font-size: 20px;
text-align: center;
width: 50%;
margin: auto;
}
@media only screen and (max-width: 768px) {
.item1{
flex-direction: column;
background-color: pink;
width: 100%;
}
.container{
flex-direction: column;
background-color: purple;
width: 100%;
}
body{
background-color: salmon; }
.history{
border: dotted 10px;
background-color: lightblue;
flex-direction: column;
width: 100%;
height: 100%;
}
}