-
Notifications
You must be signed in to change notification settings - Fork 5
/
employeedrive.html
130 lines (108 loc) · 4.19 KB
/
employeedrive.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Spandita Banerjee -->
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link rel="icon" href="./image/favicon.png">
<title>Vibgyor Advisors</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/phone.css" media="screen and (max-width: 900px)" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Baloo Bhai' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Bree+Serif&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link data-require="fontawesome@5.5.0" data-semver="5.5.0" rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" />
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" rel="stylesheet">
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: #fefefe;
font-family: sans-serif;
}
.container{
width: 90%;
margin: 50px auto;
}
.heading{
text-align: center;
font-size: 50px;
margin-bottom: 50px;
font-weight: 500;
}
.row{
display: flex;
flex-direction: row;
justify-content: space-around;
flex-flow: wrap;
}
.card{
width: 40%;
background: #fff;
border: 1px solid #ccc;
margin-bottom: 50px;
transition: 0.3s;
}
.card-header{
text-align: center;
padding: 20px 10px;
background: linear-gradient(to right, #417dff, #1be6e6);
}
.card-body{
padding: 30px 20px;
text-align: center;
font-size: 18px;
font-weight: bold;
}
.card-body .btn{
color: #fff;
text-align: center;
background: linear-gradient(to right, #417dff, #1be6e6);
margin-top: 30px;
text-decoration: none;
padding: 10px, 5px;
}
.card:hover{
transform: scale(1.05);
box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1000px) {
.card {
width: 40%;
}
}
@media screen and (max-width: 620px) {
.container{
width: 100%;
}
.heading{
padding: 20px;
font-size: 20px;
}
.card {
width: 80%;
}
}
</style>
</head>
<body>
<script crossorigin="anonymous" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<div class="container">
<div class="heading">Employee Drive</div>
<div class="row">
<div class="card">
<div class="card-header">
<h1>Drive</h1>
</div>
<div class="card-body">
<p>Upload all your files here and use them later from your cloud.</p>
<a href="#" class="btn">Create New</a>
<a href="#" class="btn">Upload</a>
</div>
</div>
</div>
</div>