forked from cdpc-iitrpr/cdpc-recruiter-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (72 loc) · 1.36 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
* {
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
}
.page-container{
margin: 10px;
padding: 10px;
}
.section-container{
margin: 10px;
padding: 10px;
}
.note-container{
margin: 10px;
padding: 20px;
border: 1.5px solid #A9A9A9;
border-radius: 5px;
/* horizontal margin auto */
margin-left: auto;
margin-right: auto;
max-width: 1000px;
}
.field-group{
margin-top: 5px;
margin-bottom: 5px;
}
.next-button{
display: flex;
justify-content: flex-end;
}
.field-heading{
font-weight: 600;
}
.company-container{
display: flex;
justify-content: space-between;
margin: 10px;
padding: 10px;
border: #A9A9A9 1.5px solid;
border-radius: 5px;
}
.list-container{
max-height: 500px;
overflow-y: auto;
}
.space-between{
display: flex;
justify-content: space-between;
}
.button-margin{
margin: 10px;
}
.text-margin{
margin: 10px;
}
#versionTitle{
width: 60%;
}
.hover-effect:hover{
background-color: #e6e6e6;
}
.cursor-pointer{
cursor: pointer;
}
.header-link{
font-size: 13px;
border-radius: 10px;
}
.header-link:hover{
background-color: #4095b7;
}