-
Notifications
You must be signed in to change notification settings - Fork 34
/
workshops.css
84 lines (81 loc) · 1.26 KB
/
workshops.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
body{
font-family: "Nunito", sans-serif;
}
h1{
text-decoration: underline;
}
span{
font-weight: bold;
}
div[class="row"] img{
padding: 1rem 0;
margin: 2rem 0;
box-shadow: 3px 3px 5px #aaa;
}
#heading1{
font-family: "Lobster",sans-serif;
text-align: center;
/* margin: 0 2em 1em 0; */
text-decoration: underline;
letter-spacing: 2px;
/* text-transform: uppercase; */
}
#heading2{
margin-bottom: 1em;
font-family: "Lobster",sans-serif;
text-align: center;
}
.container{
}
.card{
margin-top: 2em;
border: 2px solid #aaa;
border-radius: 30px;
box-shadow: 2px 2px 20px rgba(24, 44, 97,0.2);
transition: box-shadow 0.7s;
}
.card:hover{
box-shadow: 20px 20px 20px rgba(24, 44, 97,0.2);
transition: box-shadow 0.3s;
}
.border{
border: solid 2px red!important;
}
.text_card{
margin-top: 50px;
}
img#one{
z-index: -1;
position: fixed;
opacity: 0.4;
top: 8rem;
left: 30rem;
width: 15vh;
}
img#two{
position: fixed;
opacity: 0.7;
width: 10rem;
bottom: 0;
right: 0;
z-index: -1;
}
img#three{
position: fixed;
width: 10rem;
bottom: 0;
opacity: 0.4;
padding: 0 0;
z-index: -1;
}
img#four{
position: fixed;
width: 10rem;
right: 10rem;
bottom: 10rem;
z-index: -1;
opacity: 0.5;
}
div.row div.col-lg-8 p{
text-align: justify;
}