-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
105 lines (87 loc) · 1.62 KB
/
styles.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
body {
color: rgb(53, 53, 53);
margin: 0px;
text-align: center;
font-weight: bold;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#hero {
background-image: url("Images/moscow.jpg");
background-size: cover;
background-position: center;
padding: 120px 0;
text-shadow: 0px 0px 3px black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#to-do {
margin-top: 20px;
}
#main {
display: grid;
justify-content: center;
padding: 0 0 20px 0;
background-color: aquamarine;
}
.main-header {
margin: 0;
color:white;
background-color:#4b64b0;
padding: 5px 10px;
border-radius: 5px;
}
.second-header {
color:white;
background-color: #686e98;
padding: 10px 15px;
border-radius: 5px;
}
.list {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
list-style: none;
margin: 0 50px;
padding: 0;
gap: 20px;
}
.list LI {
padding: 5px 0px;
background: rgb(144, 221, 252);
border-radius: 5px;
}
.round-img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 50%;
}
.avatar {
width: 150px;
height: 150px;
object-fit: cover;
}
.card {
display: flex;
background: #ddebf8;
padding: 20px;
justify-content: space-around;
align-items: center;
width: 400px;
margin: 20px auto;
font-weight: 400;
text-align: center;
color: #2b2839;
border-top: 10px solid #d23b088a;
border-left: 10px solid #d23b08;
}
.italic {
font-style: italic;
}
.info {
width: 120px;
}
ul {
list-style-type: none;
}