-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathConnection.module.css
128 lines (104 loc) · 1.94 KB
/
Connection.module.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Main styles */
.connection {
color: #ffffff;
display: flex;
flex-direction: column;
}
.dclLogo {
height: 40px;
width: 40px;
margin-bottom: 24px;
}
.title {
margin-bottom: 0px;
font-size: 30px;
}
.subtitle {
font-size: 30px;
margin-top: 0px;
margin-bottom: 56px;
font-weight: 400;
}
/* Primary button styles */
.primaryButton:global(.ui.button.primary) {
background-color: #ffffff;
color: black;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
}
.primaryImage {
margin-right: 7.5px;
}
.primaryMessage {
font-size: 16px;
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 19px;
gap: 6px;
}
.primaryMagic {
background-image: url(../../assets/images/magic.svg);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 66px;
height: 24px;
}
.primaryLearnMore {
text-decoration: underline;
cursor: pointer;
}
/* Primary option buttons styles */
.primary + .primary {
margin-top: 20px;
}
/* Show more styles */
.showMore {
margin-top: 32px;
}
.showMoreButton:global(.ui.button.basic) {
color: #ffffff !important;
font-weight: bold;
display: flex;
gap: 8px;
justify-content: center;
margin-bottom: 15px;
}
.showMoreSecondaryOptions {
width: 100%;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.showMoreSecondaryOptions + .showMoreSecondaryOptions {
margin-top: 24px;
}
.showMoreSecondaryOptions + .line {
margin-top: 14px;
}
.line + .showMoreSecondaryOptions {
margin-top: 14px;
}
/* Not showing? */
.primaryOption {
width: 100%;
}
.secondaryOptionButton:global(.ui.button.primary) {
min-width: 46px;
}
@media (max-width: 320px) {
.showMoreSecondaryOptions {
grid-template-columns: repeat(1, 1fr);
}
.secondaryOptionButton span :global(.ui.button.primary) {
margin: auto;
}
}
.line {
border: 1px solid white;
width: 80%;
}