-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (99 loc) · 2.12 KB
/
style.css
File metadata and controls
123 lines (99 loc) · 2.12 KB
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
#root {
max-width: 1200px;
margin: 0 auto;
}
body{
background: #f2f2f2;
font-family: 'Open Sans', sans-serif;
font-size: 1.2rem !important;
}
/* for jobs description click event */
.hidden {
display:none!important;
}
.card:hover {
cursor:pointer;
}
/* styling for cards */
* {
box-sizing: border-box
}
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Dosis', sans-serif;
line-height: 1.6;
color: #696969;
background: white;
}
h2 {
text-align: center;
padding: 1.5rem 2.5rem;
background-color: #e1edeb;
margin: 0 0 2rem 0;
font-size: 1.5rem;
color: #696969;
}
h3, h4, h5 {
text-align: left;
position: relative;
padding: 8px;
line-height: .5;
left: 43px;
margin-bottom: .2rem;
}
p {
padding: 0 2.5rem 2.5rem;
margin: 0;
}
.container-fluid{
display: flex;
flex-wrap: wrap;
}
.card {
margin: 1rem;
background:#eff4f3;
box-shadow: 2px 4px 25px ;
border-radius: 20px;
overflow: hidden;
transition: all .2s linear;
}
.card:hover {
box-shadow: 2px 8px 45px rgba(0, 0, 0, .15);
transform: translate3D(0, -2px, 0);
}
@media screen and (min-width: 600px) {
.card {
flex: 1 1 calc(50% - 2rem);
}
}
@media screen and (min-width: 900px) {
.card {
flex: 1 1 calc(33% - 2rem);
}
}
.card:nth-child(2n) h1 {
background-color: #e1edeb;
color: #696969;
}
.card:nth-child(4n) h1 {
background-color: #e1edeb;
color: #696969;
}
.card:nth-child(5n) h1 {
background-color #e1edeb;
color: #696969;
}
label {
display: block;
line-height: 1.5em;
}
ul {
margin-left: 0;
padding-left: 0;
list-style: none;
}
li {
padding: 8px 16px;
border-bottom: 1px solid #eee;
}