-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
124 lines (101 loc) · 2.13 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: white;
background-image: url(./assets/background.png);
}
h1 {
font-size: 45px;
margin: 0px;
}
h2 {
font-size: 30px;
margin-top: 150px;
text-align: center;
}
p {
margin: 8px;
}
a {
color: rgb(35, 145, 255);
}
.head {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-end;
align-content: center;
margin-top: 80px;
align-items: center;
}
.logo {
padding: 0px;
margin: 0px;
}
.social-link {
text-decoration: none;
margin-left: 10px;
margin-right: 10px;
padding: 10px;
}
.download {
display: flex;
flex-direction: row;
justify-content: center;
}
.download-os {
display: flex;
flex-direction: column;
align-items: center;
margin: 50px;
margin-top: 20px;
}
.download-supported {
color: white;
text-decoration: none;
text-align: center;
padding: 10px;
width: 120px;
margin: 10px;
border: 2px solid rgba(255, 255, 255, 0.519);
border-radius: 7px;
background-color: rgba(255, 255, 255, 0.158);
}
.download-supported:hover {
background-color: rgba(255, 255, 255, 0.24);
}
.download-blocked {
color: rgb(149, 149, 149);
text-decoration: none;
text-align: center;
padding: 10px;
width: 120px;
margin: 10px;
border: 2px solid rgba(150, 150, 150, 0.519);
border-radius: 7px;
background-color: rgba(92, 92, 92, 0.158);
}
.info {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: rgba(255, 227, 89, 0.252);
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: #F0F0F0;
}
::-webkit-scrollbar-thumb {
background: #CECECE;
}
::-webkit-scrollbar-thumb:hover {
background: #A7A7A7;
}
::-moz-selection { /* Code for Firefox */
background-color: rgba(104, 231, 254, 0.43);
}
::selection {
background-color: rgba(104, 231, 254, 0.43);
}