-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (100 loc) · 2.06 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
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
body {
margin: 0;
font-family: 'Outfit', sans-serif;
background-color: hsl(217, 54%, 11%);
padding-top: 65px;
}
main {
display: flex;
margin: auto;
width: 330px;
height: 560px;
background-color: hsl(216, 50%, 16%);
flex-direction: column;
border-radius: 12px;
box-shadow: 0px -1px 39px 6px rgba(0,0,0,0.75);
}
main div {
padding: 0 25px 0 25px;
}
main .big_photo {
display: flex;
justify-content: center;
padding-top: 25px;
}
main .big_photo img{
width: 280px;
height: auto;
border-radius: 12px;
}
main .middle {
margin-top: 25px;
}
main .middle h1 {
color: hsl(0, 0%, 100%);
font-size: 24px;
font-weight: 400;
margin: 0;
}
main .middle p {
color: hsl(215, 51%, 70%);
line-height: 25px;
}
main .middle_bottom {
display: flex;
justify-content: space-between;
padding: 0;
/* border-bottom: 1px solid hsl(215, 51%, 70%); */
}
main .middle_bottom .middle_eth {
display: flex;
gap: 8px;
color: hsl(178, 100%, 50%);
font-size: 14px;
}
.middle_clock {
display: flex;
gap: 8px;
color: hsl(215, 51%, 70%);
font-size: 14px;
}
main div.footer {
display: flex;
width: 280px;
border-top: 2px solid hsl(215, 32%, 27%);
border-top-height: 280px;
padding: 0;
align-items: center;
margin: auto;
margin-top: 18px;
justify-content: space-between;
}
.small_image {
margin-top: 18px;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
.small_image img {
display: flex;
width: 40px;
border: 1px solid #fff;
border-radius: 50%;
justify-content: start;
}
.small_image div {
color: hsl(215, 51%, 70%);
font-size: 14px;
}
.small_image div span {
color: white;
cursor: pointer;
}
.small_image div span:hover {
color:hsl(178, 100%, 50%) ;
}
.middle h1:hover {
color: hsl(178, 100%, 50%);
cursor: pointer;
}