-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication-requirment.css
79 lines (64 loc) · 1.06 KB
/
application-requirment.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
#application-requirement {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.application-requrement h1 {
font-size: 4rem;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
.application-content {
margin-bottom: 20px;
}
.table tr th {
background-color: #ccc;
}
.application-content h5 {
margin: 0;
}
hr {
border: 1px solid #ccc;
}
p {
margin-bottom: 10px;
}
.application-content a {
text-decoration: none;
color: blue;
}
ol {
padding-left: 20px;
}
li {
margin-bottom: 5px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid #ccc;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
@media screen and (max-width: 600px) {
#application-requirement {
padding: 10px;
margin: 10px;
}
.application-requrement h1 {
font-size: 2rem;
}
}