-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (78 loc) · 1.71 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
@import url("https://fonts.googleapis.com/css2?family=Gruppo&family=Manrope:wght@600;800&family=Michroma&family=Nabla&family=Orbitron:wght@400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Secular+One&family=Zen+Dots&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
img {
max-width: 100%;
}
body {
background: yellow url("./bg2.png") 100% no-repeat fixed;
background-size: cover;
color: #762f56;
display: grid;
place-content: center;
min-height: 100vh;
}
a {
color: #762f56;
text-decoration: none;
}
main {
font-family: "roboto", sans-serif;
width: 300px;
padding: 10px;
border: 1px solid purple;
border-radius: 10px;
background: yellow;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
margin-top: 30px;
box-shadow: 0px 0px 510px black;
}
main .desc {
padding: 0px 10px 10px;
border-bottom: 1px solid #762f56;
}
main .logo {
width: 150px;
height: 150px;
background-color: #e47b54;
border-radius: 50%;
overflow: hidden;
}
main .logo img {
width: 100%;
height: inherit;
transform: scale(1.1);
}
.btns {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.btns .link {
width: 100%;
padding: 6px;
border: 1px solid #762f56;
border-radius: 10px;
box-shadow: 3px 2px 2px rgba(118, 47, 86, 0.3176470588);
}
.btns .link:hover {
transform: scale(1.02);
}
.info {
font-style: italic;
}
@media (max-width: 400px) {
main {
width: 280px;
}
}/*# sourceMappingURL=style.css.map */