forked from dindotjs/We-are-git
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
61 lines (54 loc) · 1.08 KB
/
styling.css
File metadata and controls
61 lines (54 loc) · 1.08 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
html,body{
font-family:"Comic Sans MS", "Comic Sans";
background-color:#ECF4E8;
color:#5b8389;
}
.card {
background-color:#CBF3BB;
}
.btn {
background-color: #98d49f;
border:#98d49f;
}
.btn:hover {
background-color: #ABE7B2;
transform: translateY(1px);
}
.wrap {
width: 100%;
overflow: hidden;
}
.feature-icon {
width: 4rem;
height: 4rem;
border-radius: .75rem;
}
.icon-square {
width: 3rem;
height: 3rem;
border-radius: .75rem;
}
.text-shadow-1 { text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25); }
.text-shadow-2 { text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25); }
.text-shadow-3 { text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25); }
.card-cover {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
border-radius: 1lem;
}
.feature-icon-small {
width: 3rem;
height: 3rem;
}
.container-style{
border-radius: 1em;
border: 2px solid black;
padding: 1em;
margin-bottom: 3em;
border-radius: 1lem;
box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}
* {
transition: all 0.2s ease-in-out;
}