-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
128 lines (96 loc) · 2.09 KB
/
index.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
* {
box-sizing: border-box;
}
body {
/* background-color: rgb(10, 11, 15); */
background-image: linear-gradient(to bottom right, white, black);
color: rgb(63, 31, 83);
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.nav {
height: 70px;
width: 100%;
background-color: linear-gradient(to bottom right, white, black);
margin: 20px;
}
.nav > .nav-header {
display: inline;
}
.nav > .nav-header > .nav-title {
display: inline-block;
font-size: 22px;
color: #fff;
padding: 10px 10px 10px 10px;
}
.nav > .nav-links {
display: inline;
float: right;
font-size: 18px;
}
.nav > .nav-links > a {
display: inline-block;
padding: 13px 10px 13px 10px;
text-decoration: none;
color: #efefef;
}
.nav > .nav-links > a:hover {
background-color: rgba(0, 0, 0, 0.3);
}
.nav > #nav-check {
display: none;
}
h1{
font-size: 80px;
color: rgb(182, 86, 48);
font-weight: 800;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}
.grid-container {
display: grid;
grid-template-columns: auto auto;
padding: 10px;
}
.input-area{
display: flex;
flex-direction: column;
width: 500px;
height: 300px;
margin: 20px;
padding-top: 10px;
/* border: 1px solid white; */
padding: 30px;
text-align: center;
}
input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
/* .button-area{
display: flex;
} */
button{
padding: 10px;
margin: 20px;
background-color: rgba(115, 66, 153, 0.678);
border-radius: 8px !important;
outline-style: none;
font-weight: 700;
font-size: 18px;
color: #ffffff !important;
border: 1px solid #ffffff !important;
cursor: pointer;
border: none;
width: 150px;
}