style.css 1.96 KB
Newer Older
Ratnadeep Rajendra Kharade's avatar
Ratnadeep Rajendra Kharade committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
body {
  font-family: sans-serif;
  margin: auto;
  max-width: 1280px;
  margin-left:2%; 
  margin-right:2%;
}

.navbar {
  background-color: #cc3125;
  border-radius: 2px;
/*   max-width: 800px; */
}

.navbar a {
16
  color: #fff;
Ratnadeep Rajendra Kharade's avatar
Ratnadeep Rajendra Kharade committed
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
  display: inline-block;
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
}

.navbar a:hover {
  color: #ffffff;
}

#topbar img{
    max-width:15%;
    margin-right:20px;
}

.content{
    margin-left:2%;
    margin-right:2%;
}

.header{
    font-weight: bold;
}
.news{
   background-color: #f5f5f5;
   margin-bottom: 20px;
   padding-top:10px;
   padding-bottom: 10px;
}
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61



/* custom styles */
* {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

body {
  font-family: sans-serif;
  width: 100%;
  color: #000000;
  min-height: 100%;
  background-color: #f1f1f1;
62
  margin: 0 auto !important;
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
}

header {
  width: inherit;
  text-align: center;
  height: 65px;
  line-height: 65px;
  border-bottom: 1px solid #dfdfdf;
}

section.wrapper {
  width: 800px;
  margin: 0 auto;
  padding: 16px;
}

section div {
  margin-top: 8px;
}

section > div {
  margin-top: 20px;
  padding: 12px 16px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background-color: #fff;
}

input, textarea {
  margin: .4rem;
}

.box-input {
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.full-width {
  width: 100%;
}

button {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

button:hover {
  cursor: pointer;
  color: #007bff;
  border-color: #007bff;
  background-color: #fff;
}

130
131
132
133
134
.error-message {
  color: red;
  display: none;
}