-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (101 loc) · 1.71 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
:root {
--bg-color: #103140;
--main-color: #FCDA3D;
--seco-color: #2DAD90;
--tert-color: #C4D5DE;
--quart-color: #FFFFFF;
}
html {
height: 100%;
width: 100%;
background-color: var(--bg-color);
color: white;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
font-family: "Lexend", sans-serif;
position: relative;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
}
.introcard, .card {
width: 823px;
height: 375px;
top: 146px;
position: absolute;
background: white;
border-radius: 20px;
}
.highlight {
width: 327px;
height: 63px;
top: 333px;
position: absolute;
opacity: 0.5;
background: #fcda3d;
}
.highlight-text {
top: 270px;
position: absolute;
text-align: center;
color: black;
font-size: 50px;
font-weight: 700;
word-wrap: break-word;
}
.choosefile, .upload-pdf {
text-align: center;
font-size: 25px;
font-weight: 600;
word-wrap: break-word;
}
.choosefile {
color:black;
}
.upload-pdf {
color:white;
}
.upload {
margin-top: 550px;
}
.upload-form {
display: flex;
flex-direction: row;
}
.backgroundViewPDF {
width: 1280px;
height: 832px;
position: relative;
background: #103140
}
input[type=file] {
border: none;
padding: 15px 30px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
background-color: var(--tert-color);
border-radius: 50px;
}
input[type=submit] {
border: none;
padding: 15px 30px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
background-color: #2dad90;
border-radius: 50px;
}
table, th, td {
border: 1px solid grey;
tr:nth-child(even) {background-color: #f2f2f2;}
text-align:center
}
table {
width: 50%;
}