-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfostyle.css
More file actions
104 lines (93 loc) · 1.86 KB
/
Copy pathinfostyle.css
File metadata and controls
104 lines (93 loc) · 1.86 KB
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
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url("CSS.jpg");
background-size: cover;
font-family: "Sacrament", cursive;
}
.container {
margin-top: 20px;
}
.container h1 {
font-family: "Allura", cursive;
font-size: 100px;
margin-bottom: 60px;
text-align: center;
color: black;
}
.team {
display: -webkit-flex;
text-align: left;
width: auto;
justify-content: center;
}
.team .member {
background: #bbbbbb;
margin: 50px;
margin-bottom: 50px;
margin-left: 20px;
margin-right: 20px;
width: 500px;
padding: 50px;
line-height: 50px;
position: relative;
border-radius: 10px;
opacity: 95%;
}
.team .member h3 {
text-align: center;
color: black;
font-size: 26px;
margin: 12px 0;
}
.team .member .team_image {
width: 100px;
height: 100px;
border-radius: 50%;
position: absolute;
top: -50px;
left: 50%;
transform: translate(-50%);
}
.team .member .team_image img {
box-shadow: #14640d;
background-origin: padding-box;
box-sizing: border-box;
width: 100px;
height: 100px;
text-align: center;
border-radius: 50%;
border-style: solid green;
}
.Back {
background-color: #4caf50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
position: relative;
left: 600px;
border-radius: 20px;
border-bottom: 4px solid #4caf50;
}
.Goto {
background-color: #4caf50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
position: relative;
left: 600px;
border-radius: 20px;
border-bottom: 5px solid #4caf50;
}