forked from Ranganath0108/resume-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
149 lines (143 loc) · 2.61 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
body{
margin: 0px;
padding: 0px;
min-height: 100vh;
font-family: 'Montserrat', sans-serif;
background: lightgrey;
display: flex;
flex-direction: column;
}
.input-fields{
margin: 2%;
width: 96%;
background: white;
border-radius: 6px;
}
.input-fields input{
width: 100%;
height: 40px;
border: none;
padding-left: 9px;
background: lightgrey;
box-sizing: border-box;
border-radius: 4px;
}
.input-fields textarea{
width: 100%;
border: none;
height: 80px;
padding-left: 9px;
background: lightgrey;
box-sizing: border-box;
border-radius: 4px;
}
/*
input:focus,textarea:focus {
outline: none;
border:2px solid rgb(68, 218, 255);
} */
.hero1 {
min-height: 60px;
text-align: center;
padding: 10px;
}
.hero1 h1{
margin-top: 8px;
margin-bottom: 24px;
font-weight: 800;
font-size: 38px;
}
.main{
display: flex;
width:100%;
justify-content: space-between;
}
.main h4{
width: 100%;
/* border-bottom: 2px solid rgb(7, 7, 7); */
margin-bottom: 2px;
font-size: 24px;
text-align: left;
color: black;
}
.main hr{
margin: 2px;
min-width:100%;
border: 1px solid black;
}
.butn{
text-align: center;
cursor: pointer;
border-radius: 2px;
margin: 18px 0;
}
button{
width: 150px;
background-color: rgb(68, 218, 255);
color: white;
font-size: 18px;
border: none;
border-radius: 6px;
}
.container {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
background: lightgrey;
}
.header {
width: 100%;
background: linear-gradient(135deg, #cc4b3d 0%, #e89d41 100%);
color: white;
font-weight: 600;
height: 80px;
display:flex;
align-items: center;
justify-content: center;
}
.footer {
width: 100%;
height: 60px;
margin-top: auto;
padding-top: 0;
background: white;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #cc4b3d 0%, #e89d41 100%);
}
.innerBox {
width: 100%;
margin: 2% 0;
min-height: 100vh;
border-radius: 8px;
background: white;
}
.ipField {
margin: 20px 0;
}
.container1 {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
background: lightgrey;
}
.innerBox1 {
width: 96%;
margin: 2% 2%;
min-height: 100vh;
background: white;
padding: 12px;
}
#saveResume {
display: none;
}
.footer button {
margin: 0 18px;
text-align: center;
background: #804d00;
border-radius: 2px;
font-weight: 600;
}