-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
83 lines (68 loc) · 1.24 KB
/
index.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
body{
background:#eee;
}
.card{
border:none;
position:relative;
overflow:hidden;
border-radius:8px;
cursor:pointer;
}
.card:before{
content:"";
position:absolute;
left:0;
top:0;
width:4px;
height:100%;
background-color:#1167b1;
transform:scaleY(1);
transition:all 0.5s;
transform-origin: bottom
}
.card:after{
content:"";
position:absolute;
left:0;
top:0;
width:4px;
height:100%;
background-color:#03254c;
transform:scaleY(0);
transition:all 0.5s;
transform-origin: bottom
}
.card:hover::after{
transform:scaleY(1);
}
.fonts{
font-size:11px;
}
.social-list{
display:flex;
list-style:none;
justify-content:center;
padding:0;
}
.social-list li{
padding:10px;
color:#03254c;
font-size:19px;
}
.buttons button:nth-child(1){
border:1px solid #03254c !important;
color:#03254c;
height:40px;
}
.buttons button:nth-child(1):hover{
border:1px solid #03254c !important;
color:#fff;
height:40px;
background-color:#03254c;
}
.buttons button:nth-child(2){
border:1px solid #03254c !important;
background-color:#03254c;
color:#fff;
height:40px;
}