-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (109 loc) · 1.93 KB
/
style.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
.stroke {
height: 5px;
width: 90%;
background-color: black;
margin-top: 50px;
margin-bottom: 40px;
margin-left: auto;
margin-right: auto;
border-radius: 25px;
}
.my-container {
display: grid;
grid-template-columns: repeat(5, minmax(100px, 1fr));
grid-template-rows: repeat(2, minmax(100px, 1fr));
grid-gap: 5px;
margin: 25px;
}
.image {
width: 100%;
max-height: 350px;
}
.navigation-bar {
margin-left: auto;
margin-right: auto;
width: 13%;
}
.line-block {
display: inline-block;
}
.button {
margin-top: 50px;
margin-left: auto;
margin-right: auto;
position: relative;
background-color: #4CAF50;
border: none;
font-size: 28px;
color: #FFFFFF;
padding: 20px;
width: 200px;
text-align: center;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
text-decoration: none;
overflow: hidden;
cursor: pointer;
}
.button:after {
content: "";
background: #90EE90;
display: block;
position: absolute;
padding-top: 300%;
padding-left: 350%;
margin-left: -20px!important;
margin-top: -120%;
opacity: 0;
transition: all 0.8s
}
.button:active:after {
padding: 0;
margin: 0;
opacity: 1;
transition: 0s
}
.content {
margin-left: 75px;
margin-right: 75px;
background-color: white;
border-radius: 8px;
padding: 10px;
}
.contents {
margin: 0, auto;
}
.staffImage {
display: block;
width: inherit;
height: inherit;
}
.mainCard {
position:relative;
display:inline-block;
width: 230px;
height: 330px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 0px;
margin-left: 15px;
margin-top: 15px;
margin-bottom: 15px;
float: left;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.close
{
width: 20px;
height: 20px;
position:absolute;
right: 0;
top: 0;
}
.mainCard:hover {
box-shadow: 0 0px 0px rgba(0,0,0,0.19);
background-color: rgba(0,0,0,0.05);
}
#app {
padding: 30px;
}