-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformStyle.css
More file actions
129 lines (111 loc) · 2 KB
/
formStyle.css
File metadata and controls
129 lines (111 loc) · 2 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
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
body{
font-family: Arial, sans-serif;
margin:0;
padding:0;
background-color: #f9f9f9;
}
header{
background-color: #8e44ad;
color:white;
text-align: center;
padding: 20px 0;
}
.intro{
text-align: center;
padding: 20px;
}
.team{
text-align: center;
margin: 20px;
}
.team h2{
margin-bottom: 40px;
}
.team-section{
margin-bottom: 40px;
}
.team-section h3{
background-color: #8e44ad;
color: white;
padding: 10px;
margin-bottom: 20px;
display: inline-block;
}
.team-member {
text-align: center;
padding: 10px;
background-color: #f8f8f8;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
width: 200px;
}
.member{
background-color: white;
border: 1px solid #ddd;
border-radius: 8px;
width: 150px;
margin: 10px;
padding: 10px;
text-align: center;
}
.member img{
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 10px;
}
.member h4{
margin: 10px 0 5px 0;
font-size: 16px;
color: #333;
}
.member p{
margin: 0;
font-size: 14px;
color: #777;
}
@media(max-width:60px){
.team-members{
flex-direction: column;
}
.member{
width: 80%;
}
}
.row::after {
content: "";
clear: both;
display: table;
}
.column {
float: left;
width: 33.33%;
padding: 5px;
}
grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
grid-template-areas:
"image1 image1 image1 image1"
"text text text text";
}
.image1 {
grid-area: image1;
}
img {
max-width: 100%;
height: auto;
}
.team-row {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.team-member img {
width: 150px;
height: 150px;
border-radius: 50%;
margin-bottom: 10px;
}