-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (49 loc) · 931 Bytes
/
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
body {
margin: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.avatar {
width: 150px;
height: auto;
border-radius: 50px;
justify-content: space-around;
transition: 0.3s;
}
.avatar:hover {
transform: scale(1.1);
}
.card {
margin: 0 auto;
text-align: center;
width: 400px;
color: #517179;
background:#f0e1d1;
border-bottom:6px solid #e7d8c9;
justify-content: space-around;
padding: 20px;
display: flex;
transition: 0.3s;
box-shadow: 0 4px 8px rgba(14, 5, 5, 0.2);
}
.card:hover {
background-color:#f7dcc0;
}
.text {
transition: transform 0.3 ease-in-out;
}
.text:hover {
transform: scale(1.05);
}
.text h3 {
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.text p,
.text h4 {
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
/*
utility class
.border-blue {
border: 1px dotted blue;
}
*/