forked from Siddhi-Mahawar/Event_Scheduler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
107 lines (99 loc) · 1.85 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
*{
margin:0px;
padding:0px;
}
body{
font-size:120%;
}
.header{
color: rgb(198, 208, 216);
text-align:center;
padding: 10px;
}
form,.content{
margin-top: 30pc;
width:30%;
margin:0px auto;
padding:20px;
border:1px solid #B0C4DE;
background: transparent;
font-family: sans-serif;
font-size: 1pc;
box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}
.input-group{
margin:10px 0px 10px 0px;
}
.input-group label{
display:block;
text-align: left;
margin:3px;
}
.input-group input{
height:40px;
width:100%;
padding:5px 10px;
font-size:16px;
border-radius: 4px;
border:1px solid #6666ff;
}
.btn{
padding:10px;
font-size: 15px ;
color:white;
background:#23415C;
border:lightblue;
width: 49%;
text-align: center;
}
.btn:hover
{
color: lightcyan;
}
.navbar
{
background-color: #23415C;
padding: 1% 0;
font-size: 2ch;
}
.navbar-brand
{
min-height: 55px;
padding: 0 15px 5px;
}
.navbar-default .navbar-nav li a {
color: ghostwhite;
}
.navbar-default .navbar-nav li a:hover,.navbar-default .navbar-nav li a.active {
color: white;
}
#home
{
background: url(home/Slider-v1.jpg ) no-repeat center center fixed;
padding-top: 5pc;
display: table;
height: 100%;
position: relative;
width: 100%;
background-size: cover;
/* Add the blur effect */
/* filter: blur(8px);
-webkit-filter: blur(8px); */
}
html,body{
height: 100%;
width: 100%;
}
@media screen and (max-width: 480px) {
form,.content{
margin-top: 30pc;
width:80%;
margin:0px auto;
padding:20px;
border:1px solid #B0C4DE;
background: transparent;
font-family: sans-serif;
font-size: 1pc;
box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}
}