-
Notifications
You must be signed in to change notification settings - Fork 31
/
export.css
102 lines (83 loc) · 1.29 KB
/
export.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
.container{
box-sizing: border-box;
background-color: #B2C9FF;
width: 410px;
height: 186px;
margin: 10px;
padding: 15px;
padding-right: 20px;
}
.close{
position: relative;
left: 70%;
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
}
.close:hover {
background: white;
}
h3{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
/* identical to box height */
display: flex;
align-items: center;
letter-spacing: 0.5px;
color: #081F55;
}
p{
position: absolute;
width: 277px;
height: 28px;
left: 32px;
top: 70px;
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 14px;
display: flex;
align-items: center;
letter-spacing: 0.4px;
color: #081F55;
}
#btn1, #btn2, #btn3{
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
position: absolute;
width: 87px;
height: 28px;
border-width: 0.5px;
border-radius: 8px;
}
#btn1{
left: 30px;
top: 122px;
background: none;
border-color: #154ED5;
color: #154ED5;
}
#btn2{
left: 127px;
top: 122px;
background: #154ED5;
border: none;
color: #FFFFFF;
}
#btn3{
left: 222px;
top: 122px;
background: #04710F;
border: none;
color: #FFFFFF;
}
a{
text-decoration: none;
}