-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (78 loc) · 1.54 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
*{
font-family: Arial, Helvetica, sans-serif;
}
.btn{
padding: 2px 6px;
border: 1px solid rgb(118, 118, 118);
border-radius: 2.5px;
display: inline-block;
font-family: Arial, Helvetica, sans-serif;
font-size: 13.33px;
background-color:rgb(239, 239, 239);
cursor: default;
}
.btn:hover{
background-color: rgb(225, 225, 225);
border-color: rgb(75, 75, 75) ;
}
.cards-container{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.card{
display: flex;
flex-direction: column;
background-color: #eeeeee;
max-width: 450px;
margin-bottom: 25px;
}
.card-img{
background-image: url(./image/HJ8wJPo.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
width: 100%;
height: 400px;
margin-bottom: 30px;
}
.card-title{
text-align: center;
font-size: 23px;
margin: 0 auto;
color: #2b2b2b;
display: block;
padding-bottom: 30px;
width: 80%;
border-bottom: 2px solid #c7c7c7;
}
.card-content{
text-align: center;
padding: 30px;
margin: 0;
font-size: 15px;
color: #2b2b2b;
}
.table-container{
display: flex;
flex-direction: column;
min-width: 600px;
margin: auto;
}
.table-row{
justify-content: space-around;
display: flex;
}
.table-cell{
flex: 1;
min-height: 40px;
min-width: 20px;
background-color: #c7c7c7;
line-height: 40px;
padding: 0 20px;
border: 1px solid #2b2b2b;
}
.scroll{
width: 100%;
overflow: auto;
}