-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcustomtemplate.css
More file actions
122 lines (106 loc) · 1.91 KB
/
customtemplate.css
File metadata and controls
122 lines (106 loc) · 1.91 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
116
117
118
119
120
121
122
/* Default Fonts */
*{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
padding: 0;
}
/* Default styles */
:root{
--color-pancho: #E2B48E;
--color-crusta: #ED8856;
--color-twine: #BE8252;
--color-hemlock: #6E6D49;
--color-camouflage-green: #788568;
--color-gray: #605C59;
}
body{
padding-left: 170px;
padding-right: 170px;
}
/* ########## HEADER ######### */
.header{
height: 70px;
display: grid;
align-content: center;
}
/* logo */
#logo{
display: flex;
align-items: center;
}
#logo h5{
font-size: 24px;
color: var(--color-crusta);
font-weight: bold;
}
/* menu */
#menu{
display: flex;
justify-content: space-between;
flex-direction: row;
list-style: none;
color: var(--color-pancho);
}
#menu li{
cursor: pointer;
}
#menu li:hover{
border-bottom: var(--color-crusta) solid 2px;
}
/* heading */
#heading {
font-size: 48px;
color: var(--color-hemlock);
text-align: center;
margin-top: 100px;
margin-bottom: 100px;
}
/* form style */
form {
width: 85%;
background-color: var(--color-pancho);
padding: 45px;
border-radius: 20px;
display: flex;
flex-direction: column;
gap: 30px;
}
/* form input */
.form-control {
height: 50px;
font-size: 24px;
border-radius: 20px;
}
.form-control::placeholder {
color: var(--color-hemlock);
}
/* button style */
.btn-form {
background-color: var(--color-hemlock);
height: 50px;
border-radius: 20px;
color: white;
font-size: 24px;
font-weight: bold;
}
.btn-form:hover {
color: white;
background-color: var(--color-camouflage-green);
}
/* paragraph */
#paragraph {
font-size: 24px;
color: var(--color-gray);
margin-bottom: 40px;
text-align: center;
position: relative;
right: 29px;
}
/* parent */
.parent {
position: relative;
}
/* body cont */
.body-container {
margin-bottom: 100px;
}