-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (70 loc) · 1.23 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
body {
color: white;
height: 100%;
width: 100%;
margin: 0;
}
.container {
background-color: rgb(10,12,27);
display: flex;
align-items: center;
justify-content: center;
width: auto;
height: 750px;
}
.txt_card {
background-color: rgb(28,25,56);
display: flex;
justify-items: center;
justify-content: center;
flex-direction: column;
box-sizing: border-box;
padding: 40px 90px 40px 50px;
width: auto;
height: 400px;
}
.txt_top {
font-size: 30px;
font-family: sans-serif;
text-align: justify;
}
.txt_top .purple {
color: rgb(149, 67, 226);
}
.txt_center {
font-size: 15px;
font-family: sans-serif;
text-align: -webkit-auto;
width: 350px;
margin-bottom: 50px;
}
.txt_end {
display: flex;
justify-content: space-between;
font-family: sans-serif;
}
.txt_end h2 {
margin: 0px;
line-height: 18px;
}
.txt_end span {
font-size: 12px;
margin: 0;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: lighter;
font-style: normal;
}
.img_card {
height: 400px;
width: auto;
background-color: blueviolet;
background-repeat: repeat-x;
}
.img_card img {
width: auto;
height: 400px;
opacity: 0.5;
}
.img_card:hover {
background-color: rgb(33, 137, 185);
}