-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
83 lines (71 loc) · 1.28 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
#card-element {
box-shadow: 0 1px 3px 0 #1b4271;
border-radius: 1px;
padding: 10px;
background-color: white;
height: 250px;
width: 250px;
position: relative;
text-align: center;
}
#card-element:hover {
box-shadow: 0 15px 8px 0 #000000;
transition: 0.8s;
transform: scale3d(1.1, 1.1, 1.1);
}
img {
width: 100%;
height: 100%;
}
h1 {
font-size: 400%;
text-align: center;
color: #1b4271;
height: 100px;
width: 100%;
}
p {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-decoration: wavy;
font-size: 50px;
text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}
p::first-letter {
font-size: 200%;
color: #ff0000;
}
.cards {
display: flex;
row-gap: 50px;
column-gap: 50px;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
#k {
color: rgb(251, 77, 3)
}
#s {
color: rgb(32, 255, 2)
}
#ch {
color: rgb(255, 0, 0);
}
#co {
color: #0173ff;
}
#head-img {
width: 350px;
height: 80px;
float: left;
}
h2 {
color: orange;
text-align: center;
font-size: 50px;
font-weight: 500;
text-shadow: -1px 1px 0 #000, 1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}