-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
138 lines (134 loc) · 2.43 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
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
138
* {
box-sizing: border-box;
font-family: "Nunito", sans-serif;
}
:root {
--primary-color: rgb(0, 255, 255, 0.6);
--secondary-color: #888888;
}
html {
scroll-behavior: smooth;
}
body {
margin: auto;
width: 100%;
max-width: 600px;
}
h2 {
text-align: center;
font-size: 22px;
width: 100%;
}
.parallax {
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
background-image: url("bg.svg");
background-attachment: fixed;
background-position: center;
}
.titleOfPage {
background-color: var(--primary-color);
padding: 0 2rem;
position: absolute;
top: 30%;
font-size: 1.5rem;
box-shadow: 0px 0px 10px 5px var(--secondary-color);
}
.titleOfPage h1 {
margin-bottom: 0;
}
.titleOfPage a {
display: block;
color: black;
padding: 0.5rem 0 2rem 10rem;
}
.section {
min-height: 100vh;
background-color: var(--primary-color);
padding: 1rem;
box-shadow: 0px 0px 10px 2px var(--secondary-color);
}
#alertBox {
width: fit-content;
padding: 0 1rem;
margin: 1rem auto;
display: flex;
align-items: center;
color: red;
border: 1px solid #b91c1c;
box-shadow: 0px 0px 10px 2px var(--secondary-color);
}
.label {
padding: 1rem 0rem 0.5rem 2rem;
display: block;
font-size: 1.1rem;
font-weight: bold;
}
.notice {
font-size: 1rem;
padding: 1rem 0;
}
input {
display: inline-block;
height: 50px;
width: 300px;
left: 40%;
padding: 0.5rem;
font-size: 1.1rem;
border: 1px solid black;
box-shadow: 0px 0px 10px 2px var(--secondary-color);
}
form {
margin-top: auto;
padding-left: 20%;
}
button {
margin: 50px 50px 20px 70px;
padding: 0.5rem 4rem;
border: 2px solid black;
border-radius: 0.7rem;
background-color: black;
color: white;
font-weight: bold;
cursor: pointer;
text-transform: capitalize;
}
button:hover {
background-color: transparent;
border: 2px solid black;
color: black;
}
.footerLink a {
text-decoration: none;
display: inline-block;
padding: 1rem;
font-size: 1.1rem;
color: black;
}
footer {
margin-top: 20%;
background-color: rgb(96, 228, 251);
box-shadow: 0px 0px 10px 2px var(--secondary-color);
padding: 0 0 1rem;
}
ul {
list-style: none;
display: flex;
justify-content: center;
padding-inline-start: 0px;
margin-block-end: 0;
}
.legacyText {
font-size: 0.9rem;
padding-left: 20%;
font-weight: bold;
}
.output {
padding: 5rem;
margin: 5px 10px 0 10px;
}
.you-lucky img {
padding-left: 20%;
}