-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (70 loc) · 1.46 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (70 loc) · 1.46 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
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');
*{ margin: 0px;
box-sizing:border-box;
font-family: 'Space Mono', monospace;
}
.flex-r{
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
}
.flex-c{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
body{
background: linear-gradient(to right top,
#a2beeb, #8ecfee, #8edde5,
#a4e7d5, #c7eec7);
width: 100%;
height: 100vh;
}
.card{
justify-content: space-between;
align-items: flex-start;
padding: 10px 12px;
width: 370px;
height: 200px;
border-radius: 15px;
background-image: linear-gradient(to right bottom, #fd696b, #fa616e, #f65871, #f15075, #ec4879);
}
.card-header{
width: 100%;
justify-content: space-between;
color: white;
letter-spacing: 1px;
font-size: 23px;
}
.card-num{
width: 100%;
justify-content: flex-start;
word-spacing: 4px;
font-size: 20px;
letter-spacing: 2px;
color: #fff;
text-align: center;
margin: 30px 0px 10px 0px;
}
.card-footer{
width: 100%;
color: #fff;
justify-content: space-between;
}
.card-info div{
align-items: flex-start;
font-size: 14px;
letter-spacing: 1px;
}
.card-info div:nth-child(1){
margin-right: 25px;
}
.card-info div span:nth-child(1){
font-size: 16px;
margin-bottom: 3px;
}
.master-img img{
width: 55px;
}