-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (71 loc) · 1.12 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(185, 75%, 39%);
font-size: 18px;
font-family: "Kumbh sans", sans-serif;
}
.container {
display: block;
margin: 0 auto;
}
.one {
background-color: white;
height: 400px;
width: 320px;
border-radius: 10px;
box-shadow: 1px 7px 10px rgba(0, 0, 0, 0.3);
position: relative;
left: 600px;
top: 200px;
}
.card {
height: 200px;
}
.card img {
width: 320px;
height: auto;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.card .victor {
border-radius: 50%;
height: 100px;
width: 100px;
position: relative;
left: 110px;
bottom: 50px;
}
h3 {
font-family: "kumbh sans" sans-serif;
font-weight: 400;
padding-right: 10px;
text-align: center;
}
p {
color: hsl(0, 0%, 59%);
padding-top: 2px;
text-align: center;
}
hr {
height: 1px grey;
margin-top: 20px;
}
.vc {
margin-top: 0;
}
.footer {
display: flex;
padding: 20px;
justify-content: space-between;
}
@media (min-width:320px) and (max-width:480px){
.one{
position: relative;
left: 60px;
top: 100px;
}
}