-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (110 loc) · 2.28 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
/* body{
height: 8000px;
} */
nav{
background-color: whitesmoke;
/* border: 1px solid gray; */
box-shadow: 0 2px 8px 0 rgb(26, 25, 25);
}
/********************* Home ********************/
.home-container{
/* border: 1px solid black; */
padding-top: 9.5vh;
height: 100vh;
width: 100%;
position: relative;
background-image: url('/Alumnimeet3-1.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
}
.home-container::before{
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.646);
}
.home-container .row{
position: relative;
height: 100%;
}
#guests, #schedule{
/* margin-top: 0vh; */
padding-top: 15vh;
min-height: 100vh;
border-bottom: 1px solid black;
background-image: linear-gradient(35deg, rgb(78, 219, 216), rgb(200, 109, 225));
}
.guest-head{
}
.guest-box{
border: 1px solid gray;
border-radius: 7px;
box-shadow: 0 4px 8px 0 gray;
/* margin: 20px; */
margin-top: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
.schedule-container{
min-height: 80vh;
}
.schedule-container .row{
min-height: 50vh;
}
#venue{
padding-top: 15vh;
min-height: 100vh;
background-image: linear-gradient(35deg, rgb(148, 237, 70), rgb(116, 96, 214));
}
.venue-container, .guests-container{
min-height: 90vh;
}
.guests-container .row div div{
background-color: whitesmoke;
}
.venue-container .row{
min-height: 80vh;
/* width: 100%; */
}
/* .venue-container .row{
height: 100%;
} */
.map-box, .address-box, .schedule-box{
/* width: 50%;
height: 50%; */
padding-top: 20px;
padding-bottom: 20px;
min-height: 90%;
border: 1px solid gray;
border-radius: 15px;
box-shadow: 0 8px 16px gray;
background-color: whitesmoke;
}
iframe{
height: 90%;
width: 90%;
/* border: 1px solid black; */
margin: auto;
}
#contact{
padding-top: 10vh;
min-height: 90vh;
}
.contact-box{
border: 1px solid black;
border-radius: 7px;
box-shadow: 0 2px 4px 0 gray;
}
#footer{
margin-bottom: 0 !important;
}