forked from ishanjain1502/Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (77 loc) · 1.72 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (77 loc) · 1.72 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
::-webkit-scrollbar {
display: none;
scroll-behavior: smooth;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Franklin Gothic Medium', 'Arial';
background: linear-gradient(to bottom right, #ff9b19, #e01559);
}
#name {
text-transform: uppercase;
}
label {
font-size: 14px;
font-weight: 600;
}
input,
select {
padding: 8px 4px;
margin: 10px 0;
font-size: 16px;
}
input:focus {
border: 2px solid #ffa500;
}
.content {
display: grid;
margin: 0 1.6em;
padding: 0 4em;
}
.heading {
margin: 2rem 0 1rem 0;
padding: 0 2rem;
word-spacing: 1px;
text-transform: capitalize;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 2em;
text-align: center;
}
.right_container {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
background-color: #ffffff;
margin: 2em 0;
padding: 0.2rem 0 2em 0;
}
.right_container:hover {
cursor: pointer;
}
.right_container:hover {
transform: skewY(10deg);
transform: translateX(20px) scale(0.9) translateY(10px) skew(1.5deg);
}
.Generate {
border: none;
outline: none;
padding: 0.7rem 0;
background: linear-gradient(to bottom right, #ff9b19, #e01559);
color: #ffffff;
font-size: 16px;
font-weight: bold;
word-spacing: 2px;
text-transform: uppercase;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin: 1rem 2em 0 2em;
border-radius: 25px;
}
.Generate:hover {
background: linear-gradient(to bottom right, #e01559, #ff9b19);
}