-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
94 lines (84 loc) · 1.3 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
html{
box-sizing: border-box;
}
body{
margin: 0;
background-color: #f8f9fa;
}
a{
text-decoration: none;
color:black;
}
/* Navigation */
.navbar{
background-color: rgb(43, 28, 177);
box-shadow: 10px 10px 10px #ccc;
}
.navbar-brand{
color: #fff!important;
}
.nav-link{
color:#fff!important;
}
.nav-link:hover{
color:rgb(34, 37, 187)!important;
border: 2px solid #fff;
background-color: #fff;
border-radius: 10px;
}
.active{
color:rgb(33, 199, 199)!important;
}
.nav-item{
padding-left:20px;
}
.navbar-brand img{
height: 50px;
width: 50px;
}
/* Options */
.main{
margin-bottom:200px;
}
.title{
margin:50px auto;
}
.title h1,p{
text-align:center;
}
.title h1{
color: blueviolet;
}
.options{
width:850px ;
margin: 0 auto;
}
.card-link:hover{
color: #fff;
}
.card{
/* padding:20px;
margin:5px auto;
width: 250px;
height: 300px; */
margin-right: 10px;
background-color: rgb(144, 155, 218);
}
.card:hover{
border:5px solid rgb(28, 55, 209);
background-color: rgb(88, 102, 182);
}
.mypic{
background-color: rgb(192, 204, 211);
border-radius: 50%;
height: 100px;
width: 100px;
margin:10px 0px;
}
.mypic img{
height: 100px;
width: 100px;
}
.next-btn{
margin:10px 0px;
}