-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (77 loc) · 1.8 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
body {
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-width: 320px;
min-height: 100vh;
background-color: #f4f4f9;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #f6f3f3;
line-height: 1.6;
/* background-image: linear-gradient(180deg, #4943b5, #c20909); */
background-image: linear-gradient(153deg, #3E50B4, #FF4081);
/* background-image: linear-gradient(180deg, #5C6BC0, #D32F2F); */
}
.container {
max-width: 1200px;
width: 100%;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #af1919;
border-radius: 8px;
}
h1, h2, h3, h4, h5, h6 {
color: #f9f3f3;
margin-bottom: 1em;
}
p {
margin-bottom: 1em;
}
input[type="text"] {
width: 100%;
padding: 0.5em;
margin: 0.5em 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1em;
font-family: inherit;
}
input[type="text"]:focus {
border-color: #646cff;
outline: none;
box-shadow: 0 0 5px rgba(100, 108, 255, 0.5);
}
.ul-connections{
margin-top: 5vh;
}
.ul-connection {
color: #282828;
background-color: #ffcc00;
opacity: 0.8;
border: 1px solid transparent;
cursor: pointer;
&:hover {
border: 1px solid #282828;
opacity: 1;
}
}
button {
height: 40px;
padding: 5px 10px;
margin: 10px 0;
font-size: inherit;
background-color: #ffcc00;
border-radius: 8px;
width: 100%;
color: #484848;
opacity: 0.8;
border: 1px solid transparent;
cursor: pointer;
&:hover {
border: 1px solid #282828;
opacity: 1;
}
}