-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpast-events.css
153 lines (119 loc) · 1.99 KB
/
past-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
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
* {
margin: 0;
padding: 0;
font-family: 'open sans';
font-weight: 400;
}
body {
font-family: "Open Sans";
margin: auto;
scroll-behavior: smooth;
}
.navbar-brand {
font-size: 30px;
padding-left: 20px;
padding-right: 20px;
}
.navbar {
font-size: 20px;
}
.nav-item {
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
}
.nav-item:hover {
background-color: #FFD36E;
}
.dropdown-item:hover {
background-color: #FFD36E;
}
#past-events {
margin: 3em 0;
padding-top: .5em;
font-family: 'roboto';
font-size: 2.3em;
background-color: #FFD36E;
width: 14.5em;
height: 2em;
display: flex;
justify-content: center;
}
.section {
margin: 7em 8em;
padding: 4em;
border: .4em solid;
border-radius: 3.5em;
}
.event-top {
display: flex;
justify-content: space-between;
align-items: baseline;
}
#event1 {
border-color: #C69FE3;
}
#event2 {
border-color: #A4D3FF;
}
.date-box {
font-size: 3em;
border-radius: 40px;
width: 250px;
height: 250px;
display: flex;
flex-direction: column;
align-items: center;
}
.date-box>h2 {
font-size: 70px
}
h4 {
padding-top: 50px;
font-size: 35px;
}
#event1-box {
background-color: #C69FE3;
}
#event2-box {
background-color: #A4D3FF;
}
h2 {
font-size: 3em;
margin-bottom: .4em;
}
h3 {
font-size: 2em;
font-weight: 700;
margin: .3em 0;
}
p {
margin: 5em 1em 0;
font-size: 13px;
}
@media only screen and (min-width: 768px) {
p {
margin: 2em .5em 0;
font-size: 1.5em;
}
}
@media only screen and (min-width: 1000px) {
.section {
margin: 7em 15em;
}
.event-top {
justify-content: space-evenly;
}
.event-title {
margin-right: 4em;
}
.title-time {
display: flex;
align-items: center;
}
p {
margin: 2em 2em 0;
font-size: 2em;
}
}