-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (118 loc) · 2.36 KB
/
style.css
File metadata and controls
119 lines (118 loc) · 2.36 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
* {
font-family: "InterVariable", sans-serif;
}
nav {
background: rgba(0,0,0,0.5);
box-shadow: 0px 4px 6.8px 0px rgba(0, 0, 0, 0.10);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
}
.hero {
background: url('images/bg-hero.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.maincontent {
min-height: 100vh;
}
.downloadbox {
width: 100%;
background: rgba(0,0,0,0.5);
padding: 20px 20px 40px 20px;
border-radius: 20px;
box-shadow: 0px 4px 6.8px 0px rgba(0, 0, 0, 0.10);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
border: 1px solid #696969;
}
footer {
box-shadow: 0px 4px 6.8px 0px rgba(0, 0, 0, 0.10);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
font-size: 0.8rem;
}
small {
font-size: 0.8rem;
}
/* Download buttons */
.download-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.btn-download {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding: 15px 25px;
border-radius: 10px;
text-decoration: none;
color: white;
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.3);
transition: background 0.2s, transform 0.2s;
min-width: 100px;
}
.btn-download:hover {
background: rgba(255, 255, 255, 0.25);
transform: translateY(-2px);
color: white;
text-decoration: none;
}
.btn-download .os-icon {
font-size: 1.8rem;
line-height: 1;
}
.btn-download .os-name {
font-weight: 500;
margin-top: 5px;
}
.btn-download .os-version {
font-size: 0.75rem;
opacity: 0.7;
margin-top: 2px;
}
.btn-download .os-arch {
font-size: 0.6rem;
opacity: 0.5;
margin-top: 2px;
}
.btn-download .download-arrow {
position: absolute;
bottom: 6px;
right: 8px;
font-size: 0.7rem;
opacity: 0.5;
}
@media (max-width: 576px) {
.download-buttons {
flex-direction: column;
align-items: center;
}
.btn-download {
width: 80%;
flex-direction: row;
justify-content: center;
gap: 10px;
padding: 12px 20px;
}
.btn-download .os-icon {
font-size: 1.5rem;
}
.btn-download .os-name {
margin-top: 0;
}
.btn-download .os-version {
margin-top: 0;
}
.btn-download .download-arrow {
position: static;
font-size: 1rem;
opacity: 0.5;
margin-left: auto;
align-self: center;
}
}