forked from axeltechtips/axelsradio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
127 lines (107 loc) · 2.08 KB
/
styles.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* universal styles */
body {
font-family: 'Noto Sans', sans-serif;
margin: 0;
padding: 0;
background-image: url(4k-black-hole-blue-event-horizon-59jd29jf5a68v6jt-1072800992.jpg);
background-size:contain;
background-position: center;
backdrop-filter: blur(1px);
background-color: #33333300;
color: #eee;
line-height: 1.6;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container {
padding-bottom: 20px;
box-sizing: border-box;
background-color: #33333300;
}
.navbar {
background-color: #00000063;
backdrop-filter: blur(3px);
overflow: hidden;
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 20px;
height: 30px;
}
.navbar a {
color: #eee;
text-align: center;
padding: 14px 20px;
text-decoration: none;
border-radius: 20px;
}
.navbar a:hover {
background-color: #00000071;
color: #fff; /* Change color on hover */
}
.navbar .logo {
height: 40px;
}
.navbar .navbar-right {
display: flex;
}
.navbar .navbar-right a {
margin-left: 20px;
}
.content {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
border-radius: 5px;
font-size: 15px;
}
footer {
background-color: #00000050;
backdrop-filter: blur(3px);
padding: 20px 0;
text-align: center;
color: #ccc;
margin-top: auto;
width: 100%;
height: 40px;
}
footer a {
color: #ccc;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* download elements */
.download-button {
display: inline-block;
padding: 10px 20px;
background-color: #4caf50;
color: #fff;
text-decoration: none;
border-radius: 10px;
transition: background-color 0.3s ease-in-out;
}
.download-button:hover {
background-color: #388e3c;
}
/* universal buttons */
.uni-button {
display: inline-block;
padding: 10px 20px;
background-color: #00335e5e;
color: #fff;
text-decoration: none;
border-radius: 10px;
transition: background-color 0.3s ease-in-out;
}
.uni-button:hover {
background-color: #38648e;
}
/* img on index.html */
.scrnsht {
border-radius: 10px;
width: 1024px;
height: 576px;
}