-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmystyle.css
88 lines (78 loc) · 1.24 KB
/
mystyle.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
body::-webkit-scrollbar {
width: 1em;
}
body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}
.navbar {
position: sticky;
}
ul {
display: flex;
flex-wrap: wrap;
display: none;
list-style: none;
}
#rome {
display: block;
}
ul li a {
text-decoration: none;
margin: 10px;
padding: 10px;
}
.card {
margin: 10px;
}
.card::hover {
opacity: 60%;
}
.myflexcard {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.contactus2div {
margin: auto;
width: 450px;
margin: 22px;
padding: 22px;
border: 2px solid gray;
border-radius: 10px;
}
.form-control {
border-radius: 4px;
}
.subcenter {
display: flex;
width: 280px;
justify-content: center;
display: none;
text-align: center;
margin: auto;
}
.aboutclass {
border: 2px solid gray;
display: flex;
margin: 20px;
padding: 20px;
justify-content: center;
align-items: center;
}
.card-body {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav {
flex-direction: row;
justify-content: space-between;
width: 300px;
}
}