-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
100 lines (86 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
100 lines (86 loc) · 1.66 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #222;
color: #fff;
line-height: 1.6;
font-size: 16px;
margin-top: 20px;
}
.container {
width: 80vw;
height: 90vh;
background-color: #111;
margin: auto;
overflow: auto;
padding:20px;
display: grid;
grid-template-columns: 5fr 3fr;
grid-gap: 30px;
border-radius: 10px;
}
.image-container {
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.image-container img {
width: 50vw;
height: 70vh;
border-radius: 5px;
margin-bottom: 20px;
}
.upload input[type="file"] {
display: none;
}
.upload label {
padding: 10px;
background-color: #333;
color: #fff;
text-align: center;
cursor: pointer;
border-radius: 5px;
}
.tools ul ,.tools ul li{
list-style: none;
display: flex;
flex-direction: column;
flex-wrap: wrap;
gap: 10px;
}
.tools ul li:last-child{
flex-direction: row;
justify-content: space-between ;
}
.tools ul li a , .tools ul li span{
padding: 10px;
margin: 10px;
background-color: #34b120;
color: #fff;
text-decoration: none;
border-radius: 5px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease-in;
}
.tools ul li span{
background-color: rgb(15, 78, 141);
}
.tools ul li a:hover,
.tools ul li span:hover{
transform: scale(1.1);
}
@media screen And (max-width:700px){
.container {
grid-template-columns: 1fr;
}
.image-container img {
width: 75vw;
}
}