-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
137 lines (118 loc) · 2.63 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
128
129
130
131
132
133
134
135
136
137
body {
font-family: Helvetica, sans-serif, Arial;
margin: 0;
padding: 0;
/*background: rgb(53,59,102);
background: linear-gradient(180deg, rgb(30, 38, 101) 0%, rgb(78, 42, 71) 100%);*/
background-image: url(https://raw.githubusercontent.com/Constellinux/.github/main/Wallpapers/default.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
font-weight: 100;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: cover;
background-size: cover;
mix-blend-mode: difference;
overflow: scroll;
overflow-x: hidden; /* Hide horizontal scrollbar */;
}
.hero {
padding: 20px;
text-align: center;
}
.hero-content p {
font-size: 1.5em;
background-color: rgba(0,0,0,0.25);
padding: 25px;
border-radius: 10px;
}
.hero-content {
margin: 0;
}
.main {
background-color: rgba(0,0,0,0.25);
padding: 25px;
border-radius: 10px;
}
.cta-button {
background-color: #007BFF;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-size: 1.2em;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #0056b3;
}
input {
width: 50%;
height: 25px;
text-align: center;
}
footer {
color: white;
text-align: center;
padding: 20px 0;
}
h1 {
font-weight: 500;
font-size: 50px;
}
h2 {
font-weight: 150;
}
h3 {
font-size: 35px
}
img {
border-radius: 50px;
background: linear-gradient(270deg, rgba(53,59,102,1) 0%, rgba(63,47,60,1) 100%);
}
.nav-rapper {
width: 100%;
display: flex;
justify-content: center;
}
.nav {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
background: rgb(53,59,102);
background: linear-gradient(270deg, rgba(53,59,102,1) 0%, rgba(63,47,60,1) 100%);
text-decoration: none;
border-radius: 20px;
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.25);
max-width: 100%;
width: fit-content;
margin-top: 10px;
}
a {
color: white;
text-align: center;
text-decoration: underline;
}
a:hover {
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.6);
border-radius: 10px;
}
button {
padding: 15px 25px;
border-radius: 8px;
margin: 5px;
background-color: rgb(157, 45, 208);
color: white;
border: none;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 20px;
box-shadow: 10px 10px 5px rgba(0,0,0,0.25);
}
button:hover {
padding: 20px 30px;
margin: 0px;
}