-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (68 loc) · 1.3 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
body {
background-blend-mode: overlay;
background-image: url('images/back.jpg');
background-repeat: no-repeat;
background-size: cover;
background-color: rgba(61, 26, 26, 0.9);
text-align: center;
color: rgb(181, 168, 168);
height: 100vh;
background-position: center;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: none;
}
.box {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 15%;
}
.da01 {
background-image: url('images/da01.jpg');
background-blend-mode: overlay;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
border: 3px solid black;
width: 95%;
height: 95%;
border-radius: 15%;
opacity: 50%;
}
@media (max-width:600px) {
.da01 {
margin-top: 5%;
width: 95%;
height: 50%;
}
.box {
width: 100vw;
height: 83vh;
}
.da02 {
width: 95%;
height: 50%;
display: flex;
flex-direction: column;
}
}
@media (min-width:600px) {
.da01 {
width: 40%;
height: 95%;
}
.box {
width: 80vw;
height: 80vh;
}
.da02 {
width: 40%;
height: 95%;
display: flex;
flex-direction: column;
}
}