-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (84 loc) · 1.66 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
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200&family=Quicksand&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
}
body {
width: 100vw;
height: 100vh;
background-image: url(./background\ \(5\).jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: auto;
font-family: "Quicksand";
}
.container {
width: 50%;
max-width: 800px;
min-width: 768px;
padding: 4rem;
background: whitesmoke;
font-size: 1.2rem;
overflow: scroll;
}
@media screen and (max-width: 768px) {
.container {
width: 100vw !important;
min-width: 100%;
padding: 1rem;
font-size: 1rem;
}
}
.container form {
display: flex;
flex-wrap: wrap;
gap: 1rem 0;
width: 100% ;
}
input {
width: 45%;
font-family: "Quicksand";
font-size: 1.1rem;
padding: 5px;
}
label {
width: 45%;
}
button {
font-family: "Quicksand";
font-size: 1.1rem;
padding: 10px 20px;
display: inline-block;
background: #007ac1;
color: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
width: min-content;
}
button:hover {
transform: translateY(-2px);
transition: ease .2s;
}
.bottom {
width: 100% !important;
margin-top: 10px;
}
.gpa {
font-family: "Nunito Sans";
font-size: 2rem;
float: right;
}
#watermark-name {
position: absolute;
bottom: 10px;
left: 10px;
color: whitesmoke;
}