-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.css
111 lines (95 loc) · 1.82 KB
/
landing.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: black;
color: white;
padding-bottom: 60px;
padding-top: 180px;
box-sizing: border-box;
}
.img{
display:inline;
border-radius: 30px;
width: 100px;
height: 100px;
float: left;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 400px;
}
.container_head{
display: flex;
justify-content: center;
align-items: center;
}
.img2{
display:inline;
border-radius: 30px;
width: 100px;
height: 100px;
float: left;
margin-right: 20px;
margin-left: 20px;
}
.container_body{
display: flex;
justify-content: center;
align-items: center;
background-color: white;
color:black;
border-radius: 20px;
justify-content: center;
}
.Text{
padding: 20px 20px;
text-align: center;
color: black;
}
.polaroid {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
border: 5px solid rgb(23, 23, 100);
width: 350px;
display: inline-block;
background-color: white;
transition: box-shadow 0.3s ease;
margin-right: 40px;
}
.polaroid:hover {
box-shadow: 0 8px 16px 0 white, 0 12px 40px 0 white;
}
header {
background-color: white;
color: black;
padding: 20px;
text-align: center;
position: fixed;
top: 0;
width: 100%;
}
nav ul {
list-style-type: none;
}
nav ul li {
display: inline;
margin-right: 20px;;
}
nav ul li a {
color: black;
text-decoration: none;
}
section {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}