-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 895 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
background-color: #fafafa;
}
.wrapper {
width: 80%;
margin: 15% auto;
}
.files {
position: relative;
}
.files p {
margin: 1rem 0px;
font-size: 14px;
padding: 0px 3rem;
}
.files input {
position: absolute;
opacity: 0;
}
.files label {
position: absolute;
background-color: #0025ea;
color: white;
padding: 6px 3rem;
border-radius: 25px;
font-size: 14px;
cursor: pointer;
}
.review-edit input {
outline: none;
border: none;
background-color: #0025ea;
color: white;
padding: 7px 2.2rem;
border-radius: 25px;
cursor: pointer;
font-size: 14px;
margin: 2rem 0;
}
.essay {
margin: 3rem 0;
}
.essay p {
font-size: 15px;
}
textarea {
font-size: 12px;
}