-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
135 lines (117 loc) · 2.13 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
@import url('https://fonts.googleapis.com/css?family=Roboto:300');
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background: #000428;
background: -webkit-linear-gradient(to right, #004e92, #000428);
background: linear-gradient(to right, #004e92, #000428);
}
section {
width: 100%;
height: 100vh;
box-sizing: border-box;
padding: 140px 0;
}
.card {
position: relative;
min-width: 200px;
width: 100%;
height: auto;
overflow: hidden;
border-radius: 15px;
margin: 0 auto;
padding: 40px 20px;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
transition: 0.5s;
}
.card:hover {
transform: scale(1.1);
}
.card_red,
.card_red .title .fa {
background: linear-gradient(-45deg, #5e91ff, #eee6ed);
}
.card_violet,
.card_violet .title .fa {
background: linear-gradient(-45deg, #f1ecf1, #349aec);
}
.card_three,
.card_three .title .fa {
background: linear-gradient(-45deg, #4524ff, #0014c5);
}
.card:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40%;
background: rgba(255, 255, 255, 0.1);
z-index: 1;
transform: skewY(-5deg) scale(1.5);
}
.title .fa {
color: #fff;
font-size: 60px;
width: 100px;
height: 100px;
border-radius: 50%;
text-align: center;
line-height: 100px;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.title h2 {
position: relative;
margin: 20px 0 0;
padding: 0;
color: #fff;
font-size: 28px;
z-index: 2;
}
.option {
position: relative;
z-index: 2;
}
.option ul {
margin: 0;
padding: 0;
}
.option ul li {
margin: 0 0 10px;
padding: 0;
list-style: none;
color: #fff;
font-size: 16px;
}
.card a {
display: block;
position: relative;
z-index: 2;
background-color: #fff;
width: 150px;
height: 40px;
text-align: center;
margin: 20px auto 0;
line-height: 40px;
border-radius: 40px;
font-size: 16px;
cursor: pointer;
text-decoration: none;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#imgBg {
border-radius: 50%;
width: 200px;
}
a {
color: #6c757d;
}
a:hover {
color: #fec503;
text-decoration: none;
}
::selection {
background: #dbd6c4;
text-shadow: none;
}