-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
88 lines (77 loc) · 1.44 KB
/
index.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.Heading_Image {
background-image: url('img/meetings.jpg');
height: 20rem;
opacity: 0.9;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-clip: border-box;
}
.Heading_Text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(73, 65, 65);
}
.Heading_Text button {
background-color: yellowgreen;
}
.Introduction {
margin: 4rem 0rem;
text-align: center;
}
.Introduction>p {
font-size: 1.1rem;
line-height: 2.4;
}
.section>p {
text-align: center;
}
.logo {
border: 1px solid #5128d8;
background-color: rgb(99, 99, 241);
color: white;
padding: 10px;
width: 80px;
height: 80px;
display: inline-block;
margin: 20px;
padding: 0px;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
text-align: center;
font-size: 3rem;
position: relative;
left: 42%;
top: 20%;
transform: translate(-50%, -50%);
}
.card {
position: relative;
left: 48%;
top: 30%;
transform: translate(-50%, -50%);
margin: 3rem 0rem;
}
.darken {
font-size: 0.9rem;
color: rgb(160, 153, 153);
}
.footer {
background-color: blue;
padding: 20px;
}
@media (max-width:800px) {
.logo {
top: 40px;
}
}