-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAQ.css
More file actions
129 lines (127 loc) · 2.78 KB
/
Copy pathFAQ.css
File metadata and controls
129 lines (127 loc) · 2.78 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital@1&family=EB+Garamond&family=Golos+Text:wght@500&family=IBM+Plex+Sans:wght@300;400&family=Inter:wght@400&family=Jockey+One&family=Lato:ital@0;1&family=Lobster&family=Martian+Mono:wght@300&family=Montserrat&family=Playfair:ital@1&family=Poppins&family=Roboto+Slab:wght@200;300&family=Roboto:ital,wght@0,300;1,300&family=Source+Serif+4&family=Space+Grotesk&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
overflow-x: hidden;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: #F8F4F4;
}
.container {
width: 100vw;
height: 100%;
}
.clgname {
position: relative;
width: 100vw;
min-height: 180px;
display: flex;
align-items: center;
background-color: #8D4B6E;
color: #FFFFFF;
flex-direction: row;
}
.header-right {
display: flex;
flex-direction: column;
width: 75%;
margin: 20px auto ;
}
.clgname .p{
margin: 3px auto 3px auto;
font-size: 40px;
text-align: center;
}
.clgname .span1 {
margin: 3px auto 3px auto;
font-size: 22px;
text-align: center;
}
.clgname .span2 {
margin: 3px auto 3px auto;
font-size: 18px;
text-align: center;
}
.clgname img {
margin-left: 80px;
}
.navbar {
width: 100%;
background-color: #33455F;
height: 80px;
}
.main-container {
display: flex;
flex-direction: column;
align-items: center;
width: 100vw;
background-color: #F8F4F4;
height: 100%;
}
.heading {
color: #33455F;
padding: 15px 30px;
font-size: 30px;
margin-top: 20px;
font-family: 'Source Serif 4', serif;
}
.matter {
width: 80%;
margin: auto;
}
.line {
margin: 15px 0;
width: 100%;
padding: 1px;
height: 1px;
background-image: linear-gradient(to right, black 70%, transparent 30%);
background-position: left top;
background-repeat: repeat-x;
background-size: 20px 1px;
}
.big {
color: #33455F;
font-size: 22px;
font-weight: 700;
padding: 10px 0;
}
.que {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 10px 0;
}
@media screen and (max-width: 600px) {
.clgname {
position: relative;
width: 100vw;
display: flex;
background-color: #8D4B6E;
color: #FFFFFF;
flex-direction: column;
}
.clgname .p{
font-size: 30px;
width: 100%;
margin: 0px auto 10px auto;
display: flex;
text-align: center;
}
.clgname .span1 {
font-size: 13px;
text-align: center;
}
.clgname .span2 {
margin: 3px;
font-size: 13px;
}
.clgname img {
margin-top: 25px;
width: 120px;
height: 120px;
margin-left: 10px;
}
}