-
Notifications
You must be signed in to change notification settings - Fork 820
/
Copy pathmain.css
50 lines (43 loc) · 827 Bytes
/
main.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
/****************************************
* General
****************************************/
html {
font-family: Sans-Serif;
text-align: center;
}
.container {
width: 600px;
margin:auto;
}
[class$=demo]{
border: 1px solid silver;
min-height: 200px;
margin: 5px;
box-shadow: 2px 2px 4px darkgrey;
border-radius: 2px;
}
/****************************************
* Transform
****************************************/
.transform-demo > h3 {
vertical-align: top;
width: 30%;
margin: 5px auto;
display: inline-block;
}
/****************************************
* Transition
****************************************/
.transition-demo img {
width: 200px;
height: 200px;
}
.cards {
display: flex;
justify-content: space-around;
}
a {
opacity: .5;
text-decoration: none;
color: salmon;
}