-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
100 lines (94 loc) · 2.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
background-image: url('drawingcrop.png'), url(drawingcrop.png);
font-family: system-ui, -apple-system,
BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
background-repeat: no-repeat, no-repeat;
background-size: 60vh auto, 60vh auto;
background-position: top left, top right;
width: 60vw;
margin: auto;
}
#contactcontainer {
display: flex;
margin: auto;
width: fit-content;
gap: 10px;
justify-content:center;
margin-bottom: 10px;
}
div a > img {
width: 50px;
height: 50px;
border-radius: 10px;
object-fit: contain;
margin: auto;
display: block;
}
div a {
width: 60px;
height: 60px;
border-radius: 8px;
background-color: rgba(204, 204, 255, 0.5);
display: flex;
justify-content: center;
box-shadow: rgba(0,0,0, 0.2) 5px 5px;
}
.cont {
margin: auto;
width: fit-content;
background-color: rgba(204, 204, 255, 0.5);
border-radius: 10px;
padding: 5px 15px;
margin-bottom: 10px;
display: flex;
justify-content: center;
font-weight: bold;
font-size: x-large;
box-shadow: rgba(0,0,0, 0.2) 5px 5px;
pointer-events: none;
}
iframe {
width: 63%;
margin: auto;
display: block;
}
.cont > p {
margin: 0;
}
.cont, #contactcontainer {
width: 60%;
}
@media only screen and (max-width:600px) {
body {
width: auto;
height: auto;
background-size: 200px;
margin: auto;
background-image: url("drawingcrop.png");
background-size: cover;
background-position: top;
}
div a > img {
width: 90%;
height: 90%;
}
#contactcontainer {
gap: 3vw ;
margin: auto;
width: 70%;
margin-bottom: 10px;
}
iframe {
width: 79%;
display: block;
height: auto;
margin: auto;
height: auto;
}
.cont {
width: 75%;
text-align: center;
}
}