-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathteams.css
62 lines (58 loc) · 904 Bytes
/
teams.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
body{
background-color: #eeeeee;
}
*{
font-family:
BentonSans-Bold, Arial, "Noto Sans", sans-serif;
font-weight: 700;
font-size: 16px;
}
#international {
background-color: white;
border-radius:10px ;
}
#inter {
display: grid;
grid-template-columns: repeat(3,1fr);
border-radius: 10px;
}
#inter div {
display: flex;
padding: 25px;
}
#inter img {
width: 15%;
}
#inter p{
margin-top: 20px;
margin-left: 10px;
}
#WCountry {
background-color: white;
border-radius:10px ;
margin-top: 20px;
}
#women {
display: grid;
grid-template-columns: repeat(3,1fr);
border-radius: 10px;
}
#women div {
display: flex;
padding: 25px;
}
#women img {
width: 15%;
}
#women p{
margin-top: 20px;
margin-left: 10px;
}
#content{
width: 80%;
margin: auto;
margin-top: 100px;
}
h2{
padding: 20px;
}