-
Notifications
You must be signed in to change notification settings - Fork 0
/
Events.css
113 lines (113 loc) · 2.62 KB
/
Events.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
.text {
color: #231f20;
}
#logo {
margin-bottom: -150px;
margin-top: -150px;
width: 600px;
height: 600px;
}
body {
text-align: center;
background-color: #fdf0eb;
font-family: 'IBM Plex Serif', serif;
}
h2 {
font-size: 40px;
font-weight: lighter;
background-color: #eacab0;
}
article {
font-size: 30px;
}
form {
font-size: 30px;
}
input {
font-family: 'IBM Plex Serif', serif;
font-size: 30px;
height: 30px;
}
button {
font-size: 30px;
font-family: 'IBM Plex Serif', serif;
}
section {
font-size: 40px;
margin-top: -15px;
}
.images {
width: 800px;
height: 500px;
padding: 10px
}
.social-media {
width: 60px;
border-radius: 50px;
margin: 20px;
}
.container {
width: 700px;
height: 685px;
background-color: #eacab0;
margin: auto;
text-align: center;
}
#full-name {
margin-left: 88px;
width: 400px;
height: auto;
}
#contact-number {
margin-left: 0px;
width: 400px;
height: auto;
}
#email-address {
margin-left: 29px;
width: 400px;
height: auto;
}
textarea {
width: 650px;
height: 200px;
font-size: 30px;
font-family: 'IBM Plex Serif', serif;
}
#submit {
margin-bottom: 13px;
}
#sidebar {
position: absolute;
width: 200px;
height: 330px;
background: #231f20;
left: -200px;
top: -10px;
transition: 0.4s;
}
#sidebar ul li {
list-style-type: none;
font-size: 30px;
padding: 15px;
margin-left: -50px;
}
#sidebar.active {
left: 0;
}
#sidebar .toggle-btn {
position: absolute;
top: 30px;
left: 330px;
}
.toggle-btn span {
width: 45px;
height: 4px;
background-color: #231f20;
display: block;
margin-top: 4px;
}
.sidebar-hl {
text-decoration: none;
color: #fdf0eb;
}