-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (76 loc) · 1.45 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
body{
width: 600px;
background-color: rgb(54, 61, 70);
}
.container{
display: flex;
align-items: stretch;
/* background-color: #f1f1f1; */
}
.container > * {
margin: 1%;
line-height: 0.5rem;
font-size: 0.8rem;
}
.container > button{
background-color: rgb(58, 83, 99);
color: white;
font-size: 1rem;
}
button{
border-radius: 1rem;
border-width: 0rem;
background-color: rgb(58, 83, 99);
color: white;
font-size: 1rem;
}
button:hover{
background-color: rgb(67, 95, 112);
}
button:active{
background-color: rgb(95, 135, 160);
}
.add-button-container{
display: flex;
justify-content: center;
padding-top: 1rem;
margin-top: 1rem;
border-top: 1px solid #4e6272;
}
.add-button{
padding: 1rem;
width: 30%;
}
.clipboard-text{
background-color: #4e6272;
color: white;
padding-left: 1rem;
padding-right: 1rem;
padding: 0.7rem;
border-radius: 1rem;
border-color: #4e6272;
border: none;
width: 100%;
font-size: 1rem;
}
.clipboard-text:focus{
background-color: #6e90aa;
}
.clipboard-text:active{
border: none;
border-color: #4e6272;
}
input[type=text]:focus {
border: none;
}
.text-container{
border-radius: 1rem;
border-width: 0;
padding-right: 2rem;
/* padding-left: 1rem; */
}
.containers-area{
display: flex;
flex-direction: column;
align-items: stretch;
}