-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (85 loc) · 1.46 KB
/
style.css
File metadata and controls
98 lines (85 loc) · 1.46 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
main {
background-color: #264653;
height: 100vh;
font-family: "Avenir", sans-serif;
}
#header-div {
width: 60%;
margin: auto;
padding-top: 100px;
text-align: center;
font-family: "Josefin Sans", sans-serif;
color: #e9c46a;
font-size: 40px;
}
#content-div {
display: flex;
flex-direction: column;
width: 80%;
margin: auto;
}
#input-div {
width: 80%;
margin: auto;
margin-bottom: 25px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#output-div {
display: flex;
flex-direction: row;
width: 80%;
justify-content: space-between;
background-color: #e9c46a;
margin: auto;
padding: 5px;
border: 3px solid #e9c46a;
border-radius: 10px;
align-items: center;
margin-bottom: 100px;
}
#error-div {
width: 80%;
margin: auto;
color: #e76f51;
font-style: italic;
font-size: 18px;
text-align: center;
}
.content-row {
display: flex;
}
input[type=text] {
width: 70%;
font-size: 18px;
padding: 10px;
border: 1px solid white;
border-radius: 10px;
}
.button {
background-color: #2a9d8f;
color: white;
align-items: center;
justify-content: center;
font-size: 18px;
border: 1px solid #2a9d8f;
border-radius: 10px;
padding: 10px;
margin-left: 5px;
display: flex;
transition-duration: 0.2s;
}
.button:hover {
background-color: #297c74;
}
#new-url {
display: flex;
color: black;
padding: 5px;
font-size: 24px;
}
#new-url-label {
font-size: 18px;
display: flex;
}