-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (82 loc) · 1.33 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
html {
height: 100%;
}
footer {
text-align: center;
}
.flex-container {
padding: 0;
margin: 0;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
justify-content: space-around;
}
.flex-item {
background: none;
padding: 5px;
width: 300px;
height: 250px;
margin-top: 10px;
color: white;
}
.heading {
line-height: 20px;
font-weight: bold;
font-size: 2em;
text-align: center;
}
.content {
text-align: left;
line-height: 30px;
font-size: 0.8em;
font-weight: normal;
}
body {
background: linear-gradient(#e66465, #9198e5);
font-size: 16px;
font-family: Tahoma, Geneva, sans-serif;
color: #ffffff;
}
a {
color: #ffffff;
}
a:hover {
color: #3e3d3d;
}
#heading-content {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 100px;
}
.container {
padding-bottom: 50px;
margin: 0 auto;
}
.image-container {
display: flex;
justify-content: center;
align-items: center;
}
.vaidehi-logo-image {
padding: 200px 0 60px 0;
width: 550px;
}
@media screen and (max-width: 560px) {
.container {
width: 310px;
margin: 0 auto;
}
.vaidehi-logo-image {
max-width: 310px;
}
.heading {
font-size: 1.5em;
}
}