-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (105 loc) · 1.74 KB
/
styles.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
/* .card-1 {
width: 40%;
height: 45%;
float:right;
margin-right: 3%;
background-color: blue;
box-shadow: 0 15px 20px rgba(0,0,0,0.4);
} */
body {
background-color: #929292;
}
.card-wrapper {
width: 100vw;
}
.card-leftside {
width: 50%;
float: left;
padding-left: 50px;
padding-top: 50px;
margin: 0 auto;
}
.card-rightside {
width: 50%;
float: right;
padding-right: 50px;
padding-top: 50px;
margin: 0 auto;
}
.card-1 {
width: 350;
height: 200;
float:right;
margin-right: 3%;
margin-bottom: 5%;
background-color: #181818;
padding: 15px;
box-shadow: 0 15px 20px rgba(0,0,0,0.4);
transition: 2s;
}
.card-1-text {
color: #848484;
font-family: Raleway;
}
.card-1.big {
width: 600px;
margin-left: 5px;
background-color: white;
transition: 2s;
/* z-index: auto;
width: 75vh;
height: 75vh;
margin: 0 auto;
box-shadow: 0 15px 20px rgba(0,0,0,0.4); */
}
.card-2 {
width: 350;
height: 200;
float:left;
margin-left: 3%;
margin-bottom: 5%;
background-color: #181818;
box-shadow: 0 15px 20px rgba(0,0,0,0.4);
padding: 15px;
}
.card-3 {
width: 350;
height: 200;
float:right;
margin-right: 3%;
background-color: #181818;
box-shadow: 0 15px 20px rgba(0,0,0,0.4);
}
.card-4 {
width: 350;
height: 200;
float:left;
margin-left: 3%;
background-color: #181818;
box-shadow: 0 15px 20px rgba(0,0,0,0.4);
}
.card-text {
color: grey;
font-size: 16;
font-family: Raleway;
}
.card-title {
font-size: 24;
}
.drop-shadow {
position: relative;
&::after {
content: '';
position: absolute;
bottom: 0;
left: 1em;
right: 1em;
box-shadow: 0 15px 20px rgba(0,0,0,0.1);
z-index: -1;
height: 85%; // match height of box-shadow
}
}
}
.box-shadow {
box-shadow: 0 0 60px rgba(0,0,0,0.15);
}