-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (99 loc) · 2.1 KB
/
styles.css
File metadata and controls
115 lines (99 loc) · 2.1 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
body {
background-color: lightgray;
transform-origin: top;
transform: scale(0.8);
}
* {
color: black;
}
.main_div, .h1, .h2, .desc {
text-align: center;
}
.pic {
width: 300px;
height: 300px;
margin: 10px 0;
border: 4px solid white;
border-radius: 150px;
cursor: pointer;
box-shadow: 0 0 30px rgba(255, 183, 0, 0.68);
transition: all 0.4s;
}
.pic:hover {
width: 350px;
height: 350px;
border-radius: 40px;
}
.h1, .h2, .form_title {
font-family: Arial, Helvetica, sans-serif;
}
.h1 {
font-size: 60px;
letter-spacing: -3px;
}
.h2 {
font-weight: 500;
font-size: 40px;
color: rgb(94, 94, 94);
letter-spacing: 5px;
}
.desc {
width: 1100px;
font-size: 25px;
font-style: oblique;
color: rgb(92, 92, 92);
margin: 0 auto 20px;
letter-spacing: 1px;
}
.name_input, .email_input {
font-size: 25px;
margin-top: 10px;
border: 3px solid rgb(85, 85, 85);
border-radius: 50px;
padding: 10px 30px;
transition: transform 0.4s ease, box-shadow 0.2s;
}
.name_input:focus, .email_input:focus {
transform: scale(1.1);
box-shadow: 0 0 15px rgb(255, 183, 0);
}
.form_title {
font-weight: 500;
font-size: 35px;
margin: 20px 0;
letter-spacing: -1px;
}
.submit {
font-size: 25px;
width: 200px;
height: 50px;
cursor: pointer;
color: white;
background-color: rgb(71, 71, 71);
border: none;
border-radius: 70px;
padding: 5px 10px;
margin-top: 20px;
margin-right: 5px;
transition: background-color 0.2s, opacity 0.15s, box-shadow 0.2s;
}
.submit:hover {
background-color: black;
box-shadow: 5px 7px 10px rgba(75, 75, 75, 0.4);
}
.submit:active {
opacity: 0.6;
}
.dropdown {
text-align: center;
font-size: 24px;
width: 125px;
height: 50px;
cursor: pointer;
color: black;
background-color: white;
border: 3px solid rgb(85, 85, 85);
border-radius: 70px;
margin-top: 20px;
margin-right: 7px;
}