-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (83 loc) · 1.61 KB
/
style.css
File metadata and controls
87 lines (83 loc) · 1.61 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
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: black;
border-radius: 10px;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 2rem 0;
background-color: rgb(76, 78, 88);
}
.title, .url, .tag{
align-self: flex-start;
font-size: 0.9rem;
font-family: 'Montserrat', sans-serif;
margin-top: 1rem;
padding-left: 1rem;
}
#title, #url, #tag{
border: 2px solid black;
border-radius: 0.5rem;
font-family: 'Montserrat', sans-serif;
text-align: center;
outline: none;
}
#submit, .copy_btn{
font-size: 1.3rem;
padding: 0.2rem 0.8rem;
margin-top: 2rem;
background-color: black;
color: white;
border: 2px solid transparent;
outline: none;
border-radius: 0.5rem;
transform: scale(1);
transition: transform 0.1s ease-out;
}
.copy_btn{
margin: 0 0 0 1rem;
height: 3.5rem;
}
#submit:hover, .copy_btn:hover{
cursor: pointer;
transform: scale(0.95);
}
.result{
display: flex;
justify-content: center;
align-items: center;
margin: 3rem 0;
}
div#contains{
display: flex;
flex-flow: column;
justify-content: center;
align-items: center;
}
textarea{
width: 21rem;
border: 2px solid black;
border-radius: 0.5rem;
font-family: 'Courier New', Courier, monospace;
}
input[type="text"], input[type="url"]{
width: 400px;
height: 50px;
}
.text {
font-family: Arial, Helvetica, sans-serif ;
color: rgb(94, 76, 175);
}