-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
161 lines (138 loc) · 2.18 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
html {
height: 100%;
swiSSdth: 100%;
}
.body{
margin:0px;
padding:0px;
}
.menu{
display: flex;
margin-top:-10px;
}
/* Button used to open the menu form */
.open-button {
border: none;
cursor: pointer;
background-color: white;
margin-left:57%;
}
/* The popup form */
.form-popup {
align-items:center;
justify-content:center;
position:fixed;
display: none;
top:10%;
z-index: 9;
width:100%;
margin:-10px;
}
/* Add styles to the form container */
.form-container {
padding: 10px;
background-color: white;
border-radius: 5px;
box-shadow: 0px 0px 20px #888888;
height:300px;
}
/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
opacity: 1;
}
.form-container a {
text-decoration: none;
font-family: monospace;
color:black;
font-size: 20px;
}
.form-container li{
list-style-type: none;
padding:5px;
margin:5px;
}
.header{
display:flex;
font-family: monospace;
justify-content:center;
align-items: center;
}
.btn{
border: none;
background-color:white;
width: 100px;
}
.header h1{
justify-content:center;
align-items: center;
padding-left:10%;
padding-right:10%;
}
.main{
margin-top:10px;
margin-left: -10px;
margin-right: -10px;
}
.ad1 body{
align-items:center;
justify-content:center;
text-align:center;
}
.main p {
text-align: center;
text-decoration: none;
font-size: 20px;
font-family: monospace;
color:white;
background-color: pink;
padding:10px;
}
.ad1 h1{
text-align: center;
text-decoration: none;
font-size: 30px;
font-family: monospace;
color:grey;
}
.ad1 h2{
text-align: center;
text-decoration: none;
font-size: 60px;
font-family: monospace;
color:pink;
margin-top: -20px;
margin-bottom: -3px;
}
.ad2{
display:flex;
align-items:center;
margin: 10px;
}
.ad2 h1{
text-align: center;
font-size: 15px;
font-family:monospace;
color: grey;
}
.ad2 span{
color:pink;
font-size: 20px;
}
.ad3{
display:flex;
align-items:center;
margin: 10px;
}
.ad3 h1{
text-align: center;
font-size: 15px;
font-family:monospace;
color: grey;
}
.ad3 span{
color:pink;
font-size: 20px;
}
html {
scroll-behavior: smooth;
}